Router setup
Some checks failed
Lint / lint (push) Failing after 9s

This commit is contained in:
Julien Valverdé
2025-01-11 16:36:06 +01:00
parent 5f455295ad
commit 6373919fc4
16 changed files with 222 additions and 165 deletions

View File

@@ -0,0 +1,10 @@
import { createFileRoute } from "@tanstack/react-router"
export const Route = createFileRoute("/")({
component: Index
})
function Index() {
return <></>
}