blob: 56b0b3baed07ff43ccd4faea295ebaba8664013f (
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
|
import { NgModule } from '@angular/core'
import { SharedMainModule } from '@app/shared/shared-main'
import { SignupSuccessComponent } from './signup-success.component'
import { SharedFormModule } from '@app/shared/shared-forms'
import { SharedGlobalIconModule } from '@app/shared/shared-icons'
@NgModule({
imports: [
SharedMainModule,
SharedFormModule,
SharedGlobalIconModule
],
declarations: [
SignupSuccessComponent
],
exports: [
SharedMainModule,
SharedFormModule,
SharedGlobalIconModule,
SignupSuccessComponent
],
providers: [
]
})
export class SignupSharedModule { }
|