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