]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared-share-modal.module.ts
e269eecac2547b5cdf9f45fcdb80f1844a3d6169
[github/Chocobozzz/PeerTube.git] / shared-share-modal.module.ts
1 import { QRCodeModule } from 'angularx-qrcode'
2 import { NgModule } from '@angular/core'
3 import { SharedFormModule } from '../shared-forms'
4 import { SharedGlobalIconModule } from '../shared-icons'
5 import { SharedMainModule } from '../shared-main/shared-main.module'
6 import { VideoShareComponent } from './video-share.component'
7
8 @NgModule({
9 imports: [
10 QRCodeModule,
11
12 SharedMainModule,
13 SharedFormModule,
14 SharedGlobalIconModule
15 ],
16
17 declarations: [
18 VideoShareComponent
19 ],
20
21 exports: [
22 VideoShareComponent
23 ],
24
25 providers: [ ]
26 })
27 export class SharedShareModal { }