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

16 lines
598 B
TypeScript
Raw Normal View History

2024-12-30 13:29:44 +03:00
import { Routes } from '@angular/router';
2025-01-03 17:20:47 +03:00
import { Documentation } from '@/src/views/pages/documentation';
import { Crud } from '@/src/views/pages/crud';
import { Landing } from '@/src/views/pages/landing';
import { Empty } from '@/src/views/pages/empty';
import { Notfound } from '@/src/views/pages/notfound';
2024-12-30 13:29:44 +03:00
export default [
2025-01-03 17:20:47 +03:00
{ path: 'documentation', component: Documentation},
{ path: 'crud', component: Crud},
{ path: 'landing', component: Landing},
{ path: 'empty', component: Empty},
{ path: 'notfound', component: Notfound},
2024-12-30 13:29:44 +03:00
{ path: '**', redirectTo: '/notfound' }
] as Routes;