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