schlechtenburg/packages/docs/lib/routes.ts

12 lines
206 B
TypeScript
Raw Normal View History

2022-03-15 19:58:11 +00:00
export default [
{
path: '/',
component: () => import('./Introduction').then(d => d.default),
},
{
path: '/example',
component: () => import('./Example').then(d => d.default),
},
]