import { StrictMode } from "react"; import { createRoot } from "react-dom/client"; import { App } from "./App.js"; const rootEl = document.getElementById("root"); if (!rootEl) throw new Error("root element not found"); createRoot(rootEl).render( , );