]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/videos.module.ts
Videos overview page: first version
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / videos.module.ts
CommitLineData
df98563e 1import { NgModule } from '@angular/core'
066e94c5 2import { VideoLocalComponent } from '@app/videos/video-list/video-local.component'
80958c78 3import { SharedModule } from '../shared'
9bf9d2a5
C
4import { VideoRecentlyAddedComponent } from './video-list/video-recently-added.component'
5import { VideoTrendingComponent } from './video-list/video-trending.component'
df98563e
C
6import { VideosRoutingModule } from './videos-routing.module'
7import { VideosComponent } from './videos.component'
22a16e36 8import { VideoUserSubscriptionsComponent } from '@app/videos/video-list/video-user-subscriptions.component'
2d3741d6 9import { VideoOverviewComponent } from '@app/videos/video-list/video-overview.component'
693b1aba
C
10
11@NgModule({
12 imports: [
13 VideosRoutingModule,
202f6b6c 14 SharedModule
693b1aba
C
15 ],
16
17 declarations: [
18 VideosComponent,
19
9bf9d2a5
C
20 VideoTrendingComponent,
21 VideoRecentlyAddedComponent,
22a16e36 22 VideoLocalComponent,
2d3741d6
C
23 VideoUserSubscriptionsComponent,
24 VideoOverviewComponent
693b1aba
C
25 ],
26
27 exports: [
28 VideosComponent
29 ],
30
202f6b6c 31 providers: []
693b1aba
C
32})
33export class VideosModule { }