09-22-2025 (#7)
All checks were successful
Build / build (push) Successful in 48s
Lint / lint (push) Successful in 13s

Co-authored-by: Julien Valverdé <julien.valverde@mailo.com>
Reviewed-on: #7
This commit was merged in pull request #7.
This commit is contained in:
2025-09-20 04:49:37 +02:00
parent ba72ca8889
commit 1cd70b3ed0
30 changed files with 908 additions and 103 deletions

View File

@@ -1,10 +1,21 @@
import { createRouter, RouterProvider } from "@tanstack/react-router"
import { StrictMode } from "react"
import { createRoot } from "react-dom/client"
import { App } from "./App"
import "./index.css"
import { routeTree } from "./routeTree.gen"
const router = createRouter({ routeTree })
declare module "@tanstack/react-router" {
interface Register {
router: typeof router
}
}
// biome-ignore lint/style/noNonNullAssertion: React entrypoint
createRoot(document.getElementById("root")!).render(
<StrictMode>
<App />
<RouterProvider router={router} />
</StrictMode>
)