import { createRoot } from "react-dom/client"; import "./index.css"; import { App } from "./app/index"; const container = document.getElementById("root"); const root = createRoot(container!); root.render();