This task list can display tasks and delete them currently. Reviewed-on: #8 Co-authored-by: Drew Galbraith <drew@tiramisu.one> Co-committed-by: Drew Galbraith <drew@tiramisu.one>
6 lines
174 B
TypeScript
6 lines
174 B
TypeScript
import { type RouteConfig, index, route } from '@react-router/dev/routes'
|
|
|
|
export default [
|
|
index('routes/home.tsx'),
|
|
route('*', 'routes/$.tsx'),
|
|
] satisfies RouteConfig
|