aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+signup/shared/signup-shared.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+signup/shared/signup-shared.module.ts')
-rw-r--r--client/src/app/+signup/shared/signup-shared.module.ts21
1 files changed, 21 insertions, 0 deletions
diff --git a/client/src/app/+signup/shared/signup-shared.module.ts b/client/src/app/+signup/shared/signup-shared.module.ts
new file mode 100644
index 000000000..cd21fdef3
--- /dev/null
+++ b/client/src/app/+signup/shared/signup-shared.module.ts
@@ -0,0 +1,21 @@
1import { NgModule } from '@angular/core'
2import { SignupSuccessComponent } from '../shared/signup-success.component'
3import { SharedModule } from '@app/shared'
4
5@NgModule({
6 imports: [
7 SharedModule
8 ],
9
10 declarations: [
11 SignupSuccessComponent
12 ],
13
14 exports: [
15 SignupSuccessComponent
16 ],
17
18 providers: [
19 ]
20})
21export class SignupSharedModule { }