aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/videos/videos.module.ts
blob: 8c8d52ad9b31a841e05c72f30f685cc826a8af5e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                        
                                        
                                                                            

                                                                                         

                                                             



                        
                




                    

                                

                            





                   
               

                             
import { NgModule } from '@angular/core'
import { SharedModule } from '../shared'
import { VideoMiniatureComponent, VideoSearchComponent } from './video-list'
import { VideoRecentlyAddedComponent } from './video-list/video-recently-added.component'
import { VideoTrendingComponent } from './video-list/video-trending.component'
import { VideosRoutingModule } from './videos-routing.module'
import { VideosComponent } from './videos.component'

@NgModule({
  imports: [
    VideosRoutingModule,
    SharedModule
  ],

  declarations: [
    VideosComponent,

    VideoTrendingComponent,
    VideoRecentlyAddedComponent,
    VideoMiniatureComponent,
    VideoSearchComponent
  ],

  exports: [
    VideosComponent
  ],

  providers: []
})
export class VideosModule { }