This commit is contained in:
2026-02-26 03:58:17 +08:00
parent 91f5f17028
commit 7489b8f1ab
40 changed files with 466 additions and 144 deletions

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

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