aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/app.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.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.module.ts')
-rw-r--r--ufund-ui/src/app/app.module.ts12
1 files changed, 11 insertions, 1 deletions
diff --git a/ufund-ui/src/app/app.module.ts b/ufund-ui/src/app/app.module.ts
index b1c6c96..ee2d578 100644
--- a/ufund-ui/src/app/app.module.ts
+++ b/ufund-ui/src/app/app.module.ts
@@ -3,10 +3,20 @@ import { BrowserModule } from '@angular/platform-browser';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
+import { NeedPageComponent } from './need-page/need-page.component';
+import { HomePageComponent } from './home-page/home-page.component';
+import { FundingBasketComponent } from './funding-basket/funding-basket.component';
+import { CupboardComponent } from './cupboard/cupboard.component';
+import { NeedListComponent } from './need-list/need-list.component';
@NgModule({
declarations: [
- AppComponent
+ AppComponent,
+ NeedPageComponent,
+ HomePageComponent,
+ FundingBasketComponent,
+ CupboardComponent,
+ NeedListComponent
],
imports: [
BrowserModule,