first commit

This commit is contained in:
2026-02-21 17:34:29 +07:00
commit fc7b96daf6
29 changed files with 7364 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import { type RouteConfig, index, route } from "@react-router/dev/routes";
export default [
index("routes/home.tsx"),
route("login", "routes/login.tsx"),
route("register", "routes/register.tsx"),
route("forms", "routes/forms.tsx"),
route("forms/:id", "routes/form.tsx"),
] satisfies RouteConfig;