aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/app-routing.module.ts
diff options
context:
space:
mode:
authorsowgro <tpoke.ferrari@gmail.com>2025-02-23 15:33:26 -0500
committersowgro <tpoke.ferrari@gmail.com>2025-02-23 15:33:26 -0500
commit1a46e367e2774bf31acd46bf088c29777c6c7f04 (patch)
treef85a1f1007f34033562c8c3018fa176409b1f4c7 /ufund-ui/src/app/app-routing.module.ts
parent02dbd629b932477609fd64bae0a3bd8fea1eec39 (diff)
downloadJellySolutions-1a46e367e2774bf31acd46bf088c29777c6c7f04.tar.gz
JellySolutions-1a46e367e2774bf31acd46bf088c29777c6c7f04.tar.bz2
JellySolutions-1a46e367e2774bf31acd46bf088c29777c6c7f04.zip
Create components
Diffstat (limited to 'ufund-ui/src/app/app-routing.module.ts')
-rw-r--r--ufund-ui/src/app/app-routing.module.ts13
1 files changed, 12 insertions, 1 deletions
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)],