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

12 lines
392 B
TypeScript
Raw Normal View History

2024-12-30 13:29:44 +03:00
import { Routes } from '@angular/router';
2025-01-07 13:04:10 +03:00
import { Documentation } from './documentation/documentation';
import { Crud } from './crud/crud';
import { Empty } from './empty/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;