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