async function boot() {
  const response = await fetch("/src/App.jsx");
  const source = await response.text();
  const runnableSource = `${source.replace(
    "export default function NahilNohLanding",
    "function NahilNohLanding"
  )}

ReactDOM.createRoot(document.getElementById("root")).render(<NahilNohLanding />);`;

  const compiled = Babel.transform(runnableSource, {
    presets: ["react"],
  }).code;

  Function("React", "ReactDOM", compiled)(React, ReactDOM);
}

boot();
