PeerTube/client/src/app/videos/videos.module.ts

30 lines
718 B
TypeScript
Raw Normal View History

import { NgModule } from '@angular/core'
import { SharedModule } from '../shared'
2017-12-01 17:38:26 +01:00
import { VideoMiniatureComponent } 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'
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,
VideoMiniatureComponent
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 { }