/* global React */
function App() {
  const route = window.useRoute();
  const { Header, TrustBar } = window;
  const pages = {
    home: window.HomePage,
    medicare: window.MedicarePage,
    aca: window.ACAPage,
    ltc: window.LTCPage,
    "final-expense": window.FinalExpensePage,
    life: window.LifePage,
    about: window.AboutPage,
    consult: window.ConsultationPage,
  };
  const Page = pages[route] || window.HomePage;
  const activeNav = pages[route] ? route : "home";
  return (
    <>
      <Header active={activeNav} />
      <TrustBar />
      <Page />
    </>
  );
}
window.App = App;
