Jak połączyć się z innym komponentem w ReactJS bez react routera
const showComponent = (route, component) => {
return window.location.pathname === route ? component : null
}
Stupid Swiftlet