Changeset b738035 for trip-planner-front/src/app/app-routing.module.ts
- Timestamp:
- 01/24/22 21:08:32 (3 years ago)
- Branches:
- master
- Children:
- 76712b2
- Parents:
- bdd6491
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/src/app/app-routing.module.ts
rbdd6491 rb738035 1 1 import { NgModule } from '@angular/core'; 2 2 import { RouterModule, Routes } from '@angular/router'; 3 import { AuthGuard } from './auth/auth.guard';3 import { ExploreComponent } from './explore/explore.component'; 4 4 import { HomepageComponent } from './homepage/homepage.component'; 5 5 import { LoginComponent } from './homepage/login/login.component'; … … 17 17 {path: '', component: HomepageComponent}, 18 18 {path: '', component:LoginComponent}, 19 {path: 'location', component: LocationDetailsComponent} 19 {path: 'location', component: LocationDetailsComponent}, 20 {path: 'explore', component: ExploreComponent} 20 21 ]; 21 22
Note:
See TracChangeset
for help on using the changeset viewer.