18 lines
291 B
TypeScript
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,
|
|
},
|
|
]
|