]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/videos.module.ts
Explicit theme colors for inputs and textarea
[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'
c07eb946 6import { VideoMostLikedComponent } from './video-list/video-most-liked.component'
df98563e
C
7import { VideosRoutingModule } from './videos-routing.module'
8import { VideosComponent } from './videos.component'
22a16e36 9import { VideoUserSubscriptionsComponent } from '@app/videos/video-list/video-user-subscriptions.component'
2d3741d6 10import { VideoOverviewComponent } from '@app/videos/video-list/video-overview.component'
693b1aba
C
11
12@NgModule({
13 imports: [
14 VideosRoutingModule,
202f6b6c 15 SharedModule
693b1aba
C
16 ],
17
18 declarations: [
19 VideosComponent,
20
9bf9d2a5 21 VideoTrendingComponent,
c07eb946 22 VideoMostLikedComponent,
9bf9d2a5 23 VideoRecentlyAddedComponent,
22a16e36 24 VideoLocalComponent,
2d3741d6
C
25 VideoUserSubscriptionsComponent,
26 VideoOverviewComponent
693b1aba
C
27 ],
28
29 exports: [
30 VideosComponent
31 ],
32
202f6b6c 33 providers: []
693b1aba
C
34})
35export class VideosModule { }