import {type RouteConfig} from "@react-router/dev/routes"; import { index, route } from '@react-router/dev/routes'; export default [ index("routes/home.tsx"), route('users', './routes/users.tsx'), route('*', './routes/catch-all.tsx'), ] satisfies RouteConfig;