]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/videos.module.ts
Implement header design
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / videos.module.ts
CommitLineData
df98563e 1import { NgModule } from '@angular/core'
80958c78
C
2import { SharedModule } from '../shared'
3import { VideoService } from './shared'
4import { MyVideosComponent, VideoListComponent, VideoMiniatureComponent, VideoSortComponent } from './video-list'
df98563e
C
5import { VideosRoutingModule } from './videos-routing.module'
6import { VideosComponent } from './videos.component'
693b1aba
C
7
8@NgModule({
9 imports: [
10 VideosRoutingModule,
11 SharedModule
12 ],
13
14 declarations: [
15 VideosComponent,
16
693b1aba 17 VideoListComponent,
fd45e8f4 18 MyVideosComponent,
693b1aba 19 VideoMiniatureComponent,
80958c78 20 VideoSortComponent
693b1aba
C
21 ],
22
23 exports: [
24 VideosComponent
25 ],
26
27 providers: [
aa8b6df4 28 VideoService
693b1aba
C
29 ]
30})
31export class VideosModule { }