]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-share-modal/shared-share-modal.module.ts
Add ability to preview embed in share modal
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-share-modal / shared-share-modal.module.ts
CommitLineData
82f443de
C
1import { QRCodeModule } from 'angularx-qrcode'
2import { NgModule } from '@angular/core'
3import { SharedFormModule } from '../shared-forms'
4import { SharedGlobalIconModule } from '../shared-icons'
5import { SharedMainModule } from '../shared-main/shared-main.module'
6import { 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})
27export class SharedShareModal { }