diff options
Diffstat (limited to 'ufund-ui/src/app/app-routing.module.ts')
-rw-r--r-- | ufund-ui/src/app/app-routing.module.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ufund-ui/src/app/app-routing.module.ts b/ufund-ui/src/app/app-routing.module.ts index c83db8a..89b6f67 100644 --- a/ufund-ui/src/app/app-routing.module.ts +++ b/ufund-ui/src/app/app-routing.module.ts @@ -6,6 +6,7 @@ import {LoginComponent} from './components/login/login.component'; import {HomePageComponent} from './components/home-page/home-page.component'; import {FundingBasketComponent} from './components/funding-basket/funding-basket.component'; import {NeedPageComponent} from './components/need-page/need-page.component'; +import {SignupComponent} from './components/signup/signup.component'; const routes: Routes = [ { path: '', component: HomePageComponent, title: "Home | JS" }, @@ -13,7 +14,8 @@ const routes: Routes = [ { path: 'cupboard', component: CupboardComponent, title: "Cupboard | JS" }, { path: 'dashboard', component: DashboardComponent, title: "Dashboard | JS" }, { path: 'basket', component: FundingBasketComponent, title: "Basket | JS" }, - { path: 'need/:id', component: NeedPageComponent, title: "Need | JS" } + { path: 'need/:id', component: NeedPageComponent, title: "Need | JS" }, + { path: 'signup', component: SignupComponent, title: "Signup | JS" }, ]; @NgModule({ |