test tank

This commit is contained in:
2026-01-28 03:12:53 +08:00
parent b394175079
commit 78fd9fcda0
71 changed files with 2744 additions and 1435 deletions

10
src/routes/user.tsx Normal file
View File

@@ -0,0 +1,10 @@
import { Outlet, createFileRoute } from '@tanstack/react-router'
import { LayoutMain } from '@/modules/layout'
export const Route = createFileRoute('/user')({
component: () => (
<LayoutMain title='User'>
<Outlet />
</LayoutMain>
),
})