aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-edit/shared/video-edit.module.ts
blob: 098a71ae6d93e7180cbb58d78023a91c8dd9ba65 (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 { NgModule } from '@angular/core'
import { TabsModule } from 'ngx-bootstrap/tabs'
import { TagInputModule } from 'ngx-chips'
import { SharedModule } from '../../../shared'
import { VideoEditComponent } from './video-edit.component'

@NgModule({
  imports: [
    TagInputModule,

    SharedModule
  ],

  declarations: [
    VideoEditComponent
  ],

  exports: [
    TagInputModule,
    TabsModule,

    VideoEditComponent
  ],

  providers: []
})
export class VideoEditModule { }