change header columns elements in airwatch
This commit is contained in:
parent
219fa8c4f9
commit
fa8a7ca996
215 changed files with 26292 additions and 45 deletions
41
old-sae-airwatch/src/app/app.routes.ts
Normal file
41
old-sae-airwatch/src/app/app.routes.ts
Normal file
|
@ -0,0 +1,41 @@
|
|||
import {Routes} from '@angular/router';
|
||||
import {ColorsPage} from './pages/colors-page/colors-page';
|
||||
import {AirwatchDemo} from './pages/airwatch-demo/airwatch-demo';
|
||||
import {Csc} from './pages/csc/csc';
|
||||
import {LayoutDemo} from './pages/layout-demo/layout-demo';
|
||||
|
||||
export const routes: Routes = [
|
||||
{
|
||||
path: '',
|
||||
component: LayoutDemo,
|
||||
title: 'Démo Layout'
|
||||
},
|
||||
{
|
||||
path: 'home',
|
||||
component: LayoutDemo,
|
||||
title: 'Démo Layout'
|
||||
},
|
||||
{
|
||||
path: 'grid',
|
||||
loadComponent: () => import('./pages/grid-demo/grid-demo').then(m => m.GridDemo),
|
||||
title: 'Démo AG Grid'
|
||||
},
|
||||
|
||||
{
|
||||
path: 'colors',
|
||||
component: ColorsPage,
|
||||
},
|
||||
{
|
||||
path: 'airwatch',
|
||||
component: AirwatchDemo,
|
||||
},
|
||||
{
|
||||
path: 'csc',
|
||||
component: Csc,
|
||||
},
|
||||
{
|
||||
path: '*',
|
||||
redirectTo: 'home',
|
||||
pathMatch: 'full'
|
||||
}
|
||||
];
|
Loading…
Add table
Add a link
Reference in a new issue