diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-03-28 21:37:28 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-03-28 21:37:28 -0400 |
commit | e1eb3f16e10042c2539b56d6c2d2e33f07abf7d9 (patch) | |
tree | 921b54a870974a30612b8b079bdfd55570326f42 /ufund-ui/src/app/app.module.ts | |
parent | fb4e2bc3eb66ca861eb8393ade21811e4510669a (diff) | |
download | JellySolutions-e1eb3f16e10042c2539b56d6c2d2e33f07abf7d9.tar.gz JellySolutions-e1eb3f16e10042c2539b56d6c2d2e33f07abf7d9.tar.bz2 JellySolutions-e1eb3f16e10042c2539b56d6c2d2e33f07abf7d9.zip |
Implement new dashboard and mini-need-list
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 9f525fe..f1d6184 100644 --- a/ufund-ui/src/app/app.module.ts +++ b/ufund-ui/src/app/app.module.ts @@ -14,6 +14,7 @@ import {RouterLink, RouterLinkActive, RouterOutlet} from '@angular/router'; import {DashboardComponent} from './components/dashboard/dashboard.component'; import {CommonModule} from '@angular/common'; import {LoginComponent} from './components/login/login.component'; +import { MiniNeedListComponent } from './components/mini-need-list/mini-need-list.component'; @NgModule({ declarations: [ @@ -25,6 +26,7 @@ import {LoginComponent} from './components/login/login.component'; NeedListComponent, DashboardComponent, LoginComponent, + MiniNeedListComponent, ], imports: [ BrowserModule, |