aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-support-modal/shared-support-modal.module.ts
blob: 1101d553539164b39581937b56d73c148f8ad2ab (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
import { NgModule } from '@angular/core'
import { SharedFormModule } from '../shared-forms'
import { SharedGlobalIconModule } from '../shared-icons'
import { SharedMainModule } from '../shared-main/shared-main.module'
import { SupportModalComponent } from './support-modal.component'

@NgModule({
  imports: [
    SharedMainModule,
    SharedFormModule,
    SharedGlobalIconModule
  ],

  declarations: [
    SupportModalComponent
  ],

  exports: [
    SupportModalComponent
  ],

  providers: [ ]
})
export class SharedSupportModal { }