Design video update
[oweals/peertube.git] / client / src / app / videos / +video-watch / video-watch.module.ts
1 import { NgModule } from '@angular/core'
2
3 import { VideoWatchRoutingModule } from './video-watch-routing.module'
4 import { MarkdownService } from '../shared'
5 import { SharedModule } from '../../shared'
6
7 import { VideoWatchComponent } from './video-watch.component'
8 import { VideoReportComponent } from './video-report.component'
9 import { VideoShareComponent } from './video-share.component'
10 import { VideoDownloadComponent } from './video-download.component'
11
12 @NgModule({
13   imports: [
14     VideoWatchRoutingModule,
15     SharedModule
16   ],
17
18   declarations: [
19     VideoWatchComponent,
20
21     VideoDownloadComponent,
22     VideoShareComponent,
23     VideoReportComponent
24   ],
25
26   exports: [
27     VideoWatchComponent
28   ],
29
30   providers: [
31     MarkdownService
32   ]
33 })
34 export class VideoWatchModule { }