/** * This file is the entry point for the React app. */ import { createRoot } from "react-dom/client"; import { App } from "./App"; const elem = document.getElementById("root")!; createRoot(elem).render();