render a new component when link clicked without react router 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
}