Add pages

This commit is contained in:
Çetin
2024-12-30 13:29:44 +03:00
parent f3d1148b3e
commit c7be0df88e
11 changed files with 992 additions and 5 deletions
+15
View File
@@ -0,0 +1,15 @@
import { Routes } from '@angular/router';
import {Documentation} from './documentation';
import {Crud} from './crud';
import {Landing} from './landing';
import {Empty} from './empty';
import {Notfound} from './notfound';
export default [
{ path: 'documentation', component: Documentation},
{ path: 'crud', component: Crud},
{ path: 'landing', component: Landing},
{ path: 'empty', component: Empty},
{ path: 'notfound', component: Notfound},
{ path: '**', redirectTo: '/notfound' }
] as Routes;