diff options
author | Gunther6070 <haydenhartman10@yahoo.com> | 2025-03-15 23:19:56 -0400 |
---|---|---|
committer | Gunther6070 <haydenhartman10@yahoo.com> | 2025-03-15 23:19:56 -0400 |
commit | 47501b0d9765e64eba370ba80bbc7b2cd5940170 (patch) | |
tree | abeda89cd86423119d5a895aa4240de83a974da5 /ufund-ui/src/app/app.module.ts | |
parent | 28e46060c8bcf7fd2adc19793bd63e27df4e7356 (diff) | |
parent | d97d4d430113088c4f52f53c040d8705c66b410e (diff) | |
download | JellySolutions-47501b0d9765e64eba370ba80bbc7b2cd5940170.tar.gz JellySolutions-47501b0d9765e64eba370ba80bbc7b2cd5940170.tar.bz2 JellySolutions-47501b0d9765e64eba370ba80bbc7b2cd5940170.zip |
Merge branch 'api-auth' of https://github.com/RIT-SWEN-261-02/team-project-2245-swen-261-02-2b into api-auth
Diffstat (limited to 'ufund-ui/src/app/app.module.ts')
-rw-r--r-- | ufund-ui/src/app/app.module.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ufund-ui/src/app/app.module.ts b/ufund-ui/src/app/app.module.ts index fa54c58..9f525fe 100644 --- a/ufund-ui/src/app/app.module.ts +++ b/ufund-ui/src/app/app.module.ts @@ -12,6 +12,8 @@ import {HttpClientModule} from '@angular/common/http'; import {FormsModule} from '@angular/forms'; 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'; @NgModule({ declarations: [ @@ -21,7 +23,8 @@ import {DashboardComponent} from './components/dashboard/dashboard.component'; FundingBasketComponent, CupboardComponent, NeedListComponent, - DashboardComponent + DashboardComponent, + LoginComponent, ], imports: [ BrowserModule, @@ -30,6 +33,7 @@ import {DashboardComponent} from './components/dashboard/dashboard.component'; RouterLink, RouterLinkActive, RouterOutlet, + CommonModule, HttpClientModule, ], providers: [], |