|
@@ -3,13 +3,5 @@ import { DashboardComponent } from './dashboard/dashboard.component';
|
|
|
|
|
|
|
|
export const routes: Routes = [
|
|
export const routes: Routes = [
|
|
|
{ path: '', redirectTo: '/dashboard', pathMatch: 'full' },
|
|
{ path: '', redirectTo: '/dashboard', pathMatch: 'full' },
|
|
|
- {path:'dashboard', component: DashboardComponent, data: {title: 'FIS App'}},
|
|
|
|
|
- {
|
|
|
|
|
- path: 'quotation',
|
|
|
|
|
- loadChildren: () => import('fis/quotation/quotation.module').then(m => m.QuotationModule)
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- path: 'leave',
|
|
|
|
|
- loadChildren: () => import('fis/leave/leave.module').then(m => m.LeaveModule)
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ {path:'dashboard', component: DashboardComponent, data: {title: 'FIS App'}}
|
|
|
];
|
|
];
|