]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/videos.module.ts
Begin videos of an account
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / videos.module.ts
1 import { NgModule } from '@angular/core'
2 import { SharedModule } from '../shared'
3 import { VideoMiniatureComponent } from './video-list'
4 import { VideoRecentlyAddedComponent } from './video-list/video-recently-added.component'
5 import { VideoTrendingComponent } from './video-list/video-trending.component'
6 import { VideosRoutingModule } from './videos-routing.module'
7 import { VideosComponent } from './videos.component'
8
9 @NgModule({
10 imports: [
11 VideosRoutingModule,
12 SharedModule
13 ],
14
15 declarations: [
16 VideosComponent,
17
18 VideoTrendingComponent,
19 VideoRecentlyAddedComponent,
20 VideoMiniatureComponent
21 ],
22
23 exports: [
24 VideosComponent
25 ],
26
27 providers: []
28 })
29 export class VideosModule { }