function App() {
  return (
    <>
      <Nav />
      <Masthead />
      <OregonMap />
      <PullQuote />
      <Library />
      <How />
      <Why />
      <Coverage />
      <Services />
      <Boundaries />
      <Contact />
      <Footer />
    </>
  );
}
ReactDOM.createRoot(document.getElementById('root')).render(<App />);
