import { StrictMode } from "react"; import { createRoot } from "react-dom/client"; // @ts-expect-error CSS imports are handled by the bundler. import "./index.css"; import App from "./App"; createRoot(document.getElementById("root")!).render( );