import { createRoot } from "react-dom/client"; import App from "./App"; const el = document.getElementById("root"); if (el) { const root = createRoot(el); root.render(); }