Initial commit

Created from https://vercel.com/new
This commit is contained in:
yzned
2025-07-18 10:26:56 +00:00
commit 5bb273d4cc
23 changed files with 7374 additions and 0 deletions

11
src/routes/__root.tsx Normal file
View File

@@ -0,0 +1,11 @@
import { Outlet, createRootRoute } from '@tanstack/react-router'
import { TanStackRouterDevtools } from '@tanstack/react-router-devtools'
export const Route = createRootRoute({
component: () => (
<>
<Outlet />
<TanStackRouterDevtools />
</>
),
})