blob: f8b224c71f286d90c16255b79359d4b7ffc42ce4 (
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 { SharedMainModule } from '@app/shared/shared-main'
import { SharedUsersModule } from '@app/shared/shared-users'
import { SignupSuccessComponent } from './signup-success.component'
@NgModule({
imports: [
SharedMainModule,
SharedFormModule,
SharedGlobalIconModule,
SharedUsersModule
],
declarations: [
SignupSuccessComponent
],
exports: [
SharedMainModule,
SharedFormModule,
SharedGlobalIconModule,
SignupSuccessComponent
],
providers: [
]
})
export class SharedSignupModule { }
|