2017-06-16 14:32:15 +02:00
|
|
|
import { NgModule } from '@angular/core'
|
2017-11-28 15:40:53 +01:00
|
|
|
import { SharedModule } from '../shared'
|
2017-12-05 17:46:33 +01:00
|
|
|
import { VideoMiniatureComponent, VideoSearchComponent } from './video-list'
|
2017-12-01 14:46:22 +01:00
|
|
|
import { VideoRecentlyAddedComponent } from './video-list/video-recently-added.component'
|
|
|
|
import { VideoTrendingComponent } from './video-list/video-trending.component'
|
2017-06-16 14:32:15 +02:00
|
|
|
import { VideosRoutingModule } from './videos-routing.module'
|
|
|
|
import { VideosComponent } from './videos.component'
|
2016-11-20 17:18:15 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
VideosRoutingModule,
|
2017-12-01 18:56:26 +01:00
|
|
|
SharedModule
|
2016-11-20 17:18:15 +01:00
|
|
|
],
|
|
|
|
|
|
|
|
declarations: [
|
|
|
|
VideosComponent,
|
|
|
|
|
2017-12-01 14:46:22 +01:00
|
|
|
VideoTrendingComponent,
|
|
|
|
VideoRecentlyAddedComponent,
|
2017-12-05 17:46:33 +01:00
|
|
|
VideoMiniatureComponent,
|
|
|
|
VideoSearchComponent
|
2016-11-20 17:18:15 +01:00
|
|
|
],
|
|
|
|
|
|
|
|
exports: [
|
|
|
|
VideosComponent
|
|
|
|
],
|
|
|
|
|
2017-12-01 18:56:26 +01:00
|
|
|
providers: []
|
2016-11-20 17:18:15 +01:00
|
|
|
})
|
|
|
|
export class VideosModule { }
|