Changeset 84d0fbb for trip-planner-front/src/app/app-routing.module.ts
- Timestamp:
- 12/19/21 19:39:00 (3 years ago)
- Branches:
- master
- Children:
- bdd6491
- Parents:
- 1ad8e64
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/src/app/app-routing.module.ts
r1ad8e64 r84d0fbb 1 1 import { NgModule } from '@angular/core'; 2 2 import { RouterModule, Routes } from '@angular/router'; 3 import { AuthGuard } from './auth/auth.guard'; 3 4 import { HomepageComponent } from './homepage/homepage.component'; 5 import { LoginComponent } from './homepage/login/login.component'; 4 6 import { LocationDetailsComponent } from './location/location-details/location-details.component'; 5 7 import { LocationComponent } from './location/location.component'; … … 14 16 {path: 'locations', component: LocationComponent}, 15 17 {path: '', component: HomepageComponent}, 18 {path: '', component:LoginComponent}, 16 19 {path: 'location', component: LocationDetailsComponent} 17 20 ];
Note:
See TracChangeset
for help on using the changeset viewer.