Guest User

Untitled

a guest
Jun 23rd, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. export const appRoutes: Routes = [
  2. {
  3. path: '',
  4. component: RwContainerComponent,
  5. children: [
  6. {
  7. path: '',
  8. component: NewRepairComponent,
  9. pathMatch: 'full'
  10. },
  11. {
  12. path: 'active',
  13. component: ActiveRepairComponent,
  14. pathMatch: 'full'
  15. },
  16. {
  17. path: 'show-all',
  18. component: ShowAllRepairComponent,
  19. pathMatch: 'full'
  20. }
  21. ]
  22. },
  23. { path: '**', redirectTo: ''}
  24. ];
Add Comment
Please, Sign In to add comment