diff options
Diffstat (limited to 'client/src/app/login/login.module.ts')
-rw-r--r-- | client/src/app/login/login.module.ts | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/client/src/app/login/login.module.ts b/client/src/app/login/login.module.ts new file mode 100644 index 000000000..31a723b43 --- /dev/null +++ b/client/src/app/login/login.module.ts | |||
@@ -0,0 +1,24 @@ | |||
1 | import { NgModule } from '@angular/core'; | ||
2 | |||
3 | import { LoginRoutingModule } from './login-routing.module'; | ||
4 | import { LoginComponent } from './login.component'; | ||
5 | import { SharedModule } from '../shared'; | ||
6 | |||
7 | @NgModule({ | ||
8 | imports: [ | ||
9 | LoginRoutingModule, | ||
10 | SharedModule | ||
11 | ], | ||
12 | |||
13 | declarations: [ | ||
14 | LoginComponent | ||
15 | ], | ||
16 | |||
17 | exports: [ | ||
18 | LoginComponent | ||
19 | ], | ||
20 | |||
21 | providers: [ | ||
22 | ] | ||
23 | }) | ||
24 | export class LoginModule { } | ||