brf/client/public/routes.ts
2025-11-24 17:09:09 +01:00

18 lines
291 B
TypeScript

import Start from './components/start_page.tsx'
import Other from './components/other_page.tsx'
export default [
{
path: '/',
name: 'start',
title: 'Start',
component: Start,
},
{
path: '/other',
name: 'other',
title: 'Other',
component: Other,
},
]