Files
psp_panel/src/views/pages/pages.routes.ts
T

12 lines
367 B
TypeScript
Raw Normal View History

2024-12-30 13:29:44 +03:00
import { Routes } from '@angular/router';
2025-01-07 12:16:16 +03:00
import { Documentation } from './documentation';
import { Crud } from './crud';
import { Empty } from './empty';
2024-12-30 13:29:44 +03:00
export default [
2025-01-06 15:38:18 +03:00
{ path: 'documentation', component: Documentation },
{ path: 'crud', component: Crud },
{ path: 'empty', component: Empty },
{ path: '**', redirectTo: '/notfound' }
2024-12-30 13:29:44 +03:00
] as Routes;