This commit is contained in:
2026-01-17 01:32:08 +08:00
commit 7706fb2ab2
17 changed files with 1591 additions and 0 deletions

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

@@ -0,0 +1,7 @@
import { createFileRoute } from '@tanstack/react-router'
export const Route = createFileRoute('/')({ component: App })
function App() {
return <div>Hello, World!</div>
}