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, }, ]