import { StrictMode } from "react"; import { createRoot } from "react-dom/client"; import App from "./App"; const rootEl = document.getElementById("root"); if (!rootEl) throw new Error("missing #root"); document.body.style.margin = "0"; createRoot(rootEl).render( , );