captains-log/frontend/app/routes.ts
Drew Galbraith 8e6ac03f70 Split the Dashboard from All Tasks. (#10)
Reviewed-on: #10
Co-authored-by: Drew Galbraith <drew@tiramisu.one>
Co-committed-by: Drew Galbraith <drew@tiramisu.one>
2025-09-24 01:02:23 +00:00

8 lines
264 B
TypeScript

import { type RouteConfig, index, route } from '@react-router/dev/routes'
export default [
index('routes/home.tsx'),
route('all-tasks', 'routes/all-tasks.tsx'),
route('task/new', 'routes/task.new.tsx'),
route('*', 'routes/$.tsx'),
] satisfies RouteConfig