Update folder structure
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import { Routes } from '@angular/router';
|
||||
import { Documentation } from './documentation/documentation';
|
||||
import { Crud } from './crud/crud';
|
||||
import { Empty } from './empty/empty';
|
||||
|
||||
export default [
|
||||
{ path: 'documentation', component: Documentation },
|
||||
{ path: 'crud', component: Crud },
|
||||
{ path: 'empty', component: Empty },
|
||||
{ path: '**', redirectTo: '/notfound' }
|
||||
] as Routes;
|
||||
Reference in New Issue
Block a user