customer-service.routes.ts 807 B

1234567891011121314151617181920212223242526
  1. import { Routes } from '@angular/router';
  2. import { Dashboard } from './dashboard/dashboard';
  3. import { ConsultationListComponent } from './dashboard/pages/consultation-list/consultation-list.component';
  4. import { AssignmentListComponent } from './dashboard/pages/assignment-list/assignment-list.component';
  5. import { ExceptionListComponent } from './dashboard/pages/exception-list/exception-list.component';
  6. export const CUSTOMER_SERVICE_ROUTES: Routes = [
  7. {
  8. path: '',
  9. component: Dashboard,
  10. children: [
  11. {
  12. path: 'consultation-list',
  13. component: ConsultationListComponent
  14. },
  15. {
  16. path: 'assignment-list',
  17. component: AssignmentListComponent
  18. },
  19. {
  20. path: 'exception-list',
  21. component: ExceptionListComponent
  22. }
  23. ]
  24. }
  25. ];