function App() {
  const { Header, Hero, Programs, WhyUs, About, Insurance, FAQ, Contact, Footer } = window;
  return (
    <React.Fragment>
      <Header />
      <Hero />
      <Programs />
      <WhyUs />
      <About />
      <Insurance />
      <FAQ />
      <Contact />
      <Footer />
    </React.Fragment>
  );
}
window.App = App;
