18 lines
303 B
TypeScript
18 lines
303 B
TypeScript
import Start from './components/start_page.tsx'
|
|
import Results from './components/results_page.tsx'
|
|
|
|
export default [
|
|
{
|
|
path: '/',
|
|
name: 'start',
|
|
title: 'Start',
|
|
component: Start,
|
|
},
|
|
{
|
|
path: '/results',
|
|
name: 'results',
|
|
title: 'Results',
|
|
component: Results,
|
|
},
|
|
]
|