Reviewed-on: #9 Co-authored-by: Drew Galbraith <drew@tiramisu.one> Co-committed-by: Drew Galbraith <drew@tiramisu.one>
7 lines
218 B
TypeScript
7 lines
218 B
TypeScript
import { type RouteConfig, index, route } from '@react-router/dev/routes'
|
|
|
|
export default [
|
|
index('routes/home.tsx'),
|
|
route('task/new', 'routes/task.new.tsx'),
|
|
route('*', 'routes/$.tsx'),
|
|
] satisfies RouteConfig
|