2024-12-30 13:29:44 +03:00
|
|
|
import { Routes } from '@angular/router';
|
|
|
|
|
|
|
|
|
|
export default [
|
2025-01-03 12:53:05 +03:00
|
|
|
{ path: 'documentation', loadComponent: () => import('./documentation').then(c => c.Documentation)},
|
|
|
|
|
{ path: 'crud', loadComponent: () => import('./crud').then(c => c.Crud)},
|
|
|
|
|
{ path: 'landing', loadComponent: () => import('./landing').then(c => c.Landing)},
|
|
|
|
|
{ path: 'empty', loadComponent: () => import('./empty').then(c => c.Empty)},
|
|
|
|
|
{ path: 'notfound', loadComponent: () => import('./notfound').then(c => c.Notfound)},
|
2024-12-30 13:29:44 +03:00
|
|
|
{ path: '**', redirectTo: '/notfound' }
|
|
|
|
|
] as Routes;
|