aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/videos/+video-edit/shared/video-edit.module.ts
blob: 098a71ae6d93e7180cbb58d78023a91c8dd9ba65 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                        
                                               
                                          
                                              
                                                           



                   




                 
                      





                   
                      

    
               

                                
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 { }