Add loader when expanding long video description
[oweals/peertube.git] / client / src / app / videos / videos.module.ts
1 import { NgModule } from '@angular/core'
2 import { SharedModule } from '../shared'
3 import { VideoService } from './shared'
4 import { MyVideosComponent, VideoListComponent, VideoMiniatureComponent, VideoSortComponent } from './video-list'
5 import { VideosRoutingModule } from './videos-routing.module'
6 import { VideosComponent } from './videos.component'
7
8 @NgModule({
9   imports: [
10     VideosRoutingModule,
11     SharedModule
12   ],
13
14   declarations: [
15     VideosComponent,
16
17     VideoListComponent,
18     MyVideosComponent,
19     VideoMiniatureComponent,
20     VideoSortComponent
21   ],
22
23   exports: [
24     VideosComponent
25   ],
26
27   providers: [
28     VideoService
29   ]
30 })
31 export class VideosModule { }