Changeset 6c1585f for trip-planner-front/src/app/app-routing.module.ts
- Timestamp:
- 11/04/21 23:10:39 (3 years ago)
- Branches:
- master
- Children:
- ceaed42
- Parents:
- 6a80231
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/src/app/app-routing.module.ts
r6a80231 r6c1585f 1 1 import { NgModule } from '@angular/core'; 2 2 import { RouterModule, Routes } from '@angular/router'; 3 import { LocationComponent } from './location/location.component'; 3 4 import { LocationsFormComponent } from './locations-form/locations-form.component'; 4 5 import { EditPlannerComponent } from './planner/edit-planner/edit-planner.component'; … … 8 9 {path: 'planners', component: PlannerComponent}, 9 10 {path: 'form', component: LocationsFormComponent}, 10 {path: 'edit/planner/:id', component: EditPlannerComponent} 11 {path: 'edit/planner/:id', component: EditPlannerComponent}, 12 {path: 'locations', component: LocationComponent} 11 13 ]; 12 14
Note:
See TracChangeset
for help on using the changeset viewer.