wip
This commit is contained in:
parent
0ef2f58379
commit
177dd78592
11 changed files with 148 additions and 1 deletions
|
@ -2,6 +2,7 @@ import { Routes } from '@angular/router';
|
|||
import { LandingPageComponent } from './landing-page/landing-page.component';
|
||||
import { HomepageComponent } from './homepage/homepage/homepage.component';
|
||||
import { authGuard } from './auth.guard';
|
||||
import { DepositComponent } from './deposit/deposit.component';
|
||||
|
||||
export const routes: Routes = [
|
||||
{
|
||||
|
@ -13,4 +14,9 @@ export const routes: Routes = [
|
|||
component: HomepageComponent,
|
||||
canActivate: [authGuard],
|
||||
},
|
||||
{
|
||||
path: 'deposit',
|
||||
component: DepositComponent,
|
||||
canActivate: [authGuard],
|
||||
}
|
||||
];
|
||||
|
|
Reference in a new issue