/* https://medium.com/altcampus/implementing-simple-spa-routing-using-vanilla-javascript-53abe399bf3c */ const about = '

I am About Page

' const contact = '

I am Contact Page

' const home = '

I am Home Page

' const routes = { '/' : home, '/contact' : contact, '/about' : about } const rootDiv = document.getElementById('root') console.log(window.location.pathname) rootDiv.innerHTML = routes[window.location.pathname] const onNavigate = (pathname) => { window.history.pushState( {}, pathname, window.location.origin + pathname ) rootDiv.innerHTML = routes[pathname] } window.popstate = () => { rootDiv.innerHTML = routes[window.location.pathname] }