diff options
author | benal01 <bja4245@rit.edu> | 2025-03-04 09:43:37 -0500 |
---|---|---|
committer | benal01 <bja4245@rit.edu> | 2025-03-04 09:43:37 -0500 |
commit | ab7aa87d3a6249352a14b5a9c3c3c9e08577657f (patch) | |
tree | 5cef39580ad1b6d8d5ca815ccf11549a76198e56 /ufund-ui/src/app/app.module.ts | |
parent | 8e93fe31c81c4c36e66c48e7efcdbfedb1877385 (diff) | |
download | JellySolutions-ab7aa87d3a6249352a14b5a9c3c3c9e08577657f.tar.gz JellySolutions-ab7aa87d3a6249352a14b5a9c3c3c9e08577657f.tar.bz2 JellySolutions-ab7aa87d3a6249352a14b5a9c3c3c9e08577657f.zip |
cupboard component form creation and interfacing with the controller
Diffstat (limited to '')
-rw-r--r-- | ufund-ui/src/app/app.module.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ufund-ui/src/app/app.module.ts b/ufund-ui/src/app/app.module.ts index d818841..c0e1dd5 100644 --- a/ufund-ui/src/app/app.module.ts +++ b/ufund-ui/src/app/app.module.ts @@ -8,6 +8,7 @@ import {HomePageComponent} from './components/home-page/home-page.component'; import {FundingBasketComponent} from './components/funding-basket/funding-basket.component'; import {CupboardComponent} from './components/cupboard/cupboard.component'; import {NeedListComponent} from './components/need-list/need-list.component'; +import {FormsModule} from '@angular/forms'; import {HttpClientModule} from '@angular/common/http'; @NgModule({ @@ -22,6 +23,7 @@ import {HttpClientModule} from '@angular/common/http'; imports: [ BrowserModule, AppRoutingModule, + FormsModule, HttpClientModule, ], providers: [], |