diff options
author | benal01 <bja4245@rit.edu> | 2025-03-31 22:15:37 -0400 |
---|---|---|
committer | benal01 <bja4245@rit.edu> | 2025-03-31 22:15:37 -0400 |
commit | 786a6db3f5a22f7bb2cc249731ef654b675c3c86 (patch) | |
tree | e45792d92bf263b59fdfecf8a595cc9b7ff899c7 /ufund-ui/src/app/app.module.ts | |
parent | 4f8ddd385924b3c7c2b36acd28daf658ecc2cb09 (diff) | |
download | JellySolutions-786a6db3f5a22f7bb2cc249731ef654b675c3c86.tar.gz JellySolutions-786a6db3f5a22f7bb2cc249731ef654b675c3c86.tar.bz2 JellySolutions-786a6db3f5a22f7bb2cc249731ef654b675c3c86.zip |
moving functionality to new component
Diffstat (limited to 'ufund-ui/src/app/app.module.ts')
-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 c91256e..16455be 100644 --- a/ufund-ui/src/app/app.module.ts +++ b/ufund-ui/src/app/app.module.ts @@ -17,6 +17,7 @@ import {LoginComponent} from './components/login/login.component'; import { MiniNeedListComponent } from './components/mini-need-list/mini-need-list.component'; import { SignupComponent } from './components/signup/signup.component'; import { ToastComponent } from './components/toast/toast.component'; +import { NeedEditComponent } from './components/need-edit/need-edit.component'; @NgModule({ declarations: [ @@ -31,6 +32,7 @@ import { ToastComponent } from './components/toast/toast.component'; SignupComponent, MiniNeedListComponent, ToastComponent, + NeedEditComponent, ], imports: [ BrowserModule, |