diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-02-23 15:33:26 -0500 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-02-23 15:33:26 -0500 |
commit | 1a46e367e2774bf31acd46bf088c29777c6c7f04 (patch) | |
tree | f85a1f1007f34033562c8c3018fa176409b1f4c7 /ufund-ui/src/app/app-routing.module.ts | |
parent | 02dbd629b932477609fd64bae0a3bd8fea1eec39 (diff) | |
download | JellySolutions-1a46e367e2774bf31acd46bf088c29777c6c7f04.tar.gz JellySolutions-1a46e367e2774bf31acd46bf088c29777c6c7f04.tar.bz2 JellySolutions-1a46e367e2774bf31acd46bf088c29777c6c7f04.zip |
Create components
Diffstat (limited to '')
-rw-r--r-- | ufund-ui/src/app/app-routing.module.ts | 13 |
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)], |