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 { Empty } from '@/src/views/pages/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;
|