]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-support-modal/shared-support-modal.module.ts
Support ICU in TS components
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-support-modal / shared-support-modal.module.ts
1 import { NgModule } from '@angular/core'
2 import { SharedFormModule } from '../shared-forms'
3 import { SharedGlobalIconModule } from '../shared-icons'
4 import { SharedMainModule } from '../shared-main/shared-main.module'
5 import { 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 })
24 export class SharedSupportModal { }