add components from angular-lib
This commit is contained in:
parent
3c429c42f4
commit
834d1521f0
100 changed files with 33352 additions and 0 deletions
13
implem/src/app/app.routes.ts
Normal file
13
implem/src/app/app.routes.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
import {Routes} from '@angular/router';
|
||||
import {Main} from './pages/main/main';
|
||||
import {Admin} from './pages/admin/admin';
|
||||
|
||||
export const routes: Routes = [{
|
||||
path: '',
|
||||
component: Main
|
||||
},
|
||||
{
|
||||
path: 'admin',
|
||||
component: Admin
|
||||
},
|
||||
];
|
Loading…
Add table
Add a link
Reference in a new issue