This commit is contained in:
2026-02-24 20:13:27 +08:00
parent 689460193b
commit a281a0e6e2
135 changed files with 442 additions and 18762 deletions

9
src/routes/index.tsx Normal file
View File

@@ -0,0 +1,9 @@
import { createFileRoute } from '@tanstack/react-router'
import App from '@/app/page'
export const Route = createFileRoute('/')({
component: RouteComponent,
})
function RouteComponent() {
return <App />
}