diff options
| author | yyamashita <yyamashita@mosquit.one> | 2026-05-08 23:37:51 +0900 |
|---|---|---|
| committer | yyamashita <yyamashita@mosquit.one> | 2026-05-08 23:37:51 +0900 |
| commit | d4d104cd604741ac0c308efe5050a0eec69bb389 (patch) | |
| tree | 4d9becba79e83e02ae93695f71e7fe4c908803e0 /app/routes.ts | |
Initial scaffold: React Router v7 + SQLite + Tailwind CSS v4
Diffstat (limited to 'app/routes.ts')
| -rw-r--r-- | app/routes.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/routes.ts b/app/routes.ts new file mode 100644 index 0000000..935792d --- /dev/null +++ b/app/routes.ts @@ -0,0 +1,5 @@ +import { type RouteConfig, index } from "@react-router/dev/routes"; + +export default [ + index("routes/home.tsx"), +] satisfies RouteConfig; |
