blob: 0aa08f3e2e82de07a77fb8917e01d81dff81366c (
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
32
33
34
35
36
37
|
import { NgModule } from '@angular/core'
import { SharedFormModule } from '@app/shared/shared-forms'
import { SharedGlobalIconModule } from '@app/shared/shared-icons'
import { SharedMainModule } from '@app/shared/shared-main'
import { SharedUsersModule } from '@app/shared/shared-users'
import { SignupMascotComponent } from './signup-mascot.component'
import { SignupStepTitleComponent } from './signup-step-title.component'
import { SignupSuccessComponent } from './signup-success.component'
@NgModule({
imports: [
SharedMainModule,
SharedFormModule,
SharedGlobalIconModule,
SharedUsersModule
],
declarations: [
SignupSuccessComponent,
SignupStepTitleComponent,
SignupMascotComponent
],
exports: [
SharedMainModule,
SharedFormModule,
SharedGlobalIconModule,
SignupSuccessComponent,
SignupStepTitleComponent,
SignupMascotComponent
],
providers: [
]
})
export class SharedSignupModule { }
|