blob: e269eecac2547b5cdf9f45fcdb80f1844a3d6169 (
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
25
26
27
|
import { QRCodeModule } from 'angularx-qrcode'
import { NgModule } from '@angular/core'
import { SharedFormModule } from '../shared-forms'
import { SharedGlobalIconModule } from '../shared-icons'
import { SharedMainModule } from '../shared-main/shared-main.module'
import { VideoShareComponent } from './video-share.component'
@NgModule({
imports: [
QRCodeModule,
SharedMainModule,
SharedFormModule,
SharedGlobalIconModule
],
declarations: [
VideoShareComponent
],
exports: [
VideoShareComponent
],
providers: [ ]
})
export class SharedShareModal { }
|