diff options
author | Tyler Ferrari <69283684+Sowgro@users.noreply.github.com> | 2025-03-30 14:12:41 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-30 14:12:41 -0400 |
commit | 0c793d302c5065085ff7982a68f7ed449d84d6dc (patch) | |
tree | fbbf2c808300c395caddccb0a929c7500453be84 /ufund-ui/src/app/app.module.ts | |
parent | ddbd1cc688aa98fb275ad72a750fbaaf53e6c0ae (diff) | |
parent | 3c9a9004780c0b91772fd7f868c642bdadb60348 (diff) | |
download | JellySolutions-0c793d302c5065085ff7982a68f7ed449d84d6dc.tar.gz JellySolutions-0c793d302c5065085ff7982a68f7ed449d84d6dc.tar.bz2 JellySolutions-0c793d302c5065085ff7982a68f7ed449d84d6dc.zip |
Merge pull request #19 from RIT-SWEN-261-02/signup-page
signup-page merge
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..156ef5f 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 { SignupComponent } from './components/signup/signup.component'; @NgModule({ declarations: [ @@ -25,6 +26,7 @@ import {LoginComponent} from './components/login/login.component'; NeedListComponent, DashboardComponent, LoginComponent, + SignupComponent, ], imports: [ BrowserModule, |