forked from rajun/ar-test
8 lines
237 B
TypeScript
8 lines
237 B
TypeScript
import { type RouteConfig, index, route } from '@react-router/dev/routes';
|
|
|
|
export default [
|
|
index('routes/dashboard.tsx'),
|
|
route('login', 'routes/login.tsx'),
|
|
route('ar/:id', 'qr-ar/ar-viewer.tsx'),
|
|
] satisfies RouteConfig;
|