import { StrictMode } from "react"; import { createRoot } from "react-dom/client"; import "./index.css"; import App from "./App.tsx"; // biome-ignore lint/style/noNonNullAssertion: if the root element is not found, the app should not render createRoot(document.getElementById("root")!).render( , );