blob: 9d8607e5d85e6a4d7e23616350a9f16a43a09c41 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
import { NgModule } from '@angular/core'
import { SharedFormModule } from '@app/shared/shared-forms'
import { SharedGlobalIconModule } from '@app/shared/shared-icons'
import { SharedInstanceModule } from '@app/shared/shared-instance'
import { SharedMainModule } from '@app/shared/shared-main'
import { LoginRoutingModule } from './login-routing.module'
import { LoginComponent } from './login.component'
@NgModule({
imports: [
LoginRoutingModule,
SharedMainModule,
SharedFormModule,
SharedGlobalIconModule,
SharedInstanceModule
],
declarations: [
LoginComponent
],
exports: [
LoginComponent
],
providers: [
]
})
export class LoginModule { }
|