From 1a46e367e2774bf31acd46bf088c29777c6c7f04 Mon Sep 17 00:00:00 2001 From: sowgro Date: Sun, 23 Feb 2025 15:33:26 -0500 Subject: Create components --- ufund-ui/src/app/app-routing.module.ts | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'ufund-ui/src/app/app-routing.module.ts') diff --git a/ufund-ui/src/app/app-routing.module.ts b/ufund-ui/src/app/app-routing.module.ts index 0297262..9e3c5ef 100644 --- a/ufund-ui/src/app/app-routing.module.ts +++ b/ufund-ui/src/app/app-routing.module.ts @@ -1,7 +1,18 @@ import { NgModule } from '@angular/core'; import { RouterModule, Routes } from '@angular/router'; +import {CupboardComponent} from './cupboard/cupboard.component'; +import {DashboardComponent} from './dashboard/dashboard.component'; +import {LoginComponent} from './login/login.component'; +import {HomePageComponent} from './home-page/home-page.component'; +import {FundingBasketComponent} from './funding-basket/funding-basket.component'; -const routes: Routes = []; +const routes: Routes = [ + {path: '', component: HomePageComponent}, + {path: 'login', component: LoginComponent}, + {path: 'cupboard', component: CupboardComponent}, + {path: 'dashboard', component: DashboardComponent}, + {path: 'funding-basket', component: FundingBasketComponent}, +]; @NgModule({ imports: [RouterModule.forRoot(routes)], -- cgit v1.2.3