7 lines
194 B
TypeScript
7 lines
194 B
TypeScript
import { type RouteConfig, index, route } from '@react-router/dev/routes';
|
|
|
|
export default [
|
|
index('routes/home.tsx'),
|
|
route('ar/:id', './qr-ar/ar-viewer.tsx'),
|
|
] satisfies RouteConfig;
|