Как связаться с другим компонентом в ReactJS без react router

const showComponent = (route, component) => {
  return window.location.pathname === route ? component : null
}
Stupid Swiftlet