Add loader when expanding long video description
[oweals/peertube.git] / client / src / app / videos / +video-edit / video-add.module.ts
1 import { NgModule } from '@angular/core'
2 import { SharedModule } from '../../shared'
3 import { VideoEditModule } from './shared/video-edit.module'
4 import { VideoAddRoutingModule } from './video-add-routing.module'
5 import { VideoAddComponent } from './video-add.component'
6
7 @NgModule({
8   imports: [
9     VideoAddRoutingModule,
10     VideoEditModule,
11     SharedModule
12   ],
13
14   declarations: [
15     VideoAddComponent
16   ],
17
18   exports: [
19     VideoAddComponent
20   ],
21
22   providers: [ ]
23 })
24 export class VideoAddModule { }