import { StrictMode } from "react"; import { createRoot } from "react-dom/client"; import { App } from "./App.tsx"; const root = document.getElementById("root"); if (root === null) throw new Error("#root is missing from index.html"); createRoot(root).render( , );