aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-support-modal/shared-support-modal.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/shared/shared-support-modal/shared-support-modal.module.ts')
-rw-r--r--client/src/app/shared/shared-support-modal/shared-support-modal.module.ts24
1 files changed, 24 insertions, 0 deletions
diff --git a/client/src/app/shared/shared-support-modal/shared-support-modal.module.ts b/client/src/app/shared/shared-support-modal/shared-support-modal.module.ts
new file mode 100644
index 000000000..1101d5535
--- /dev/null
+++ b/client/src/app/shared/shared-support-modal/shared-support-modal.module.ts
@@ -0,0 +1,24 @@
1import { NgModule } from '@angular/core'
2import { SharedFormModule } from '../shared-forms'
3import { SharedGlobalIconModule } from '../shared-icons'
4import { SharedMainModule } from '../shared-main/shared-main.module'
5import { SupportModalComponent } from './support-modal.component'
6
7@NgModule({
8 imports: [
9 SharedMainModule,
10 SharedFormModule,
11 SharedGlobalIconModule
12 ],
13
14 declarations: [
15 SupportModalComponent
16 ],
17
18 exports: [
19 SupportModalComponent
20 ],
21
22 providers: [ ]
23})
24export class SharedSupportModal { }