// Root app
const { createRoot } = ReactDOM;

function App() {
  return (
    <>
      <Hero />
      <Problem />
      <Method />
      <Labs />
    </>
  );
}

const root = createRoot(document.getElementById("app"));
root.render(<App />);
