]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/videos/videos.module.ts
Design signup and login pages
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / videos.module.ts
... / ...
CommitLineData
1import { NgModule } from '@angular/core'
2import { SharedModule } from '../shared'
3import { VideoMiniatureComponent } from './video-list'
4import { VideoRecentlyAddedComponent } from './video-list/video-recently-added.component'
5import { VideoTrendingComponent } from './video-list/video-trending.component'
6import { VideosRoutingModule } from './videos-routing.module'
7import { 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})
29export class VideosModule { }