1import { createRoot } from "react-dom/client"; 2import App from "./App"; 3 4const el = document.getElementById("root"); 5if (el) { 6 const root = createRoot(el); 7 root.render(<App />); 8}