feat: auth

This commit is contained in:
tao.chen
2026-07-31 17:22:25 +08:00
parent 1994937349
commit fb073c6f99
24 changed files with 1177 additions and 742 deletions
+5 -2
View File
@@ -1,3 +1,6 @@
import { type RouteConfig, route } from "@react-router/dev/routes";
import { type RouteConfig, index, route } from "@react-router/dev/routes";
export default [route("*", "routes/platform.tsx")] satisfies RouteConfig;
export default [
route("/login", "routes/login.tsx"),
index("routes/platform.tsx"),
] satisfies RouteConfig;