can you open a new page without react routerdom? code example
Example: how to link to a different component in reactjs without react router
const showComponent = (route, component) => {
return window.location.pathname === route ? component : null
}