schlechtenburg/packages/docs/lib/routes.ts

12 lines
206 B
TypeScript

export default [
{
path: '/',
component: () => import('./Introduction').then(d => d.default),
},
{
path: '/example',
component: () => import('./Example').then(d => d.default),
},
]