Handle markdown in account/video channel pages
[oweals/peertube.git] / client / src / app / videos / videos.module.ts
1 import { NgModule } from '@angular/core'
2 import { VideoLocalComponent } from '@app/videos/video-list/video-local.component'
3 import { SharedModule } from '../shared'
4 import { VideoSearchComponent } from './video-list'
5 import { VideoRecentlyAddedComponent } from './video-list/video-recently-added.component'
6 import { VideoTrendingComponent } from './video-list/video-trending.component'
7 import { VideosRoutingModule } from './videos-routing.module'
8 import { VideosComponent } from './videos.component'
9
10 @NgModule({
11   imports: [
12     VideosRoutingModule,
13     SharedModule
14   ],
15
16   declarations: [
17     VideosComponent,
18
19     VideoTrendingComponent,
20     VideoRecentlyAddedComponent,
21     VideoLocalComponent,
22     VideoSearchComponent
23   ],
24
25   exports: [
26     VideosComponent
27   ],
28
29   providers: []
30 })
31 export class VideosModule { }