feat: store logged account

This commit is contained in:
2025-05-24 12:05:57 +02:00
parent 06e0e90677
commit eb42b61b2c
8 changed files with 177 additions and 36 deletions

View File

@ -2,7 +2,12 @@ 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(<App />);
createRoot(root).render(
<DbProvider>
<App />
</DbProvider>
);