]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-library/+my-video-channels/my-video-channels.module.ts
Increase global font size
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-library / +my-video-channels / my-video-channels.module.ts
CommitLineData
17119e4a
C
1import { ChartModule } from 'primeng/chart'
2import { NgModule } from '@angular/core'
3import { SharedFormModule } from '@app/shared/shared-forms'
4import { SharedGlobalIconModule } from '@app/shared/shared-icons'
5import { SharedMainModule } from '@app/shared/shared-main'
17119e4a
C
6import { MyVideoChannelsRoutingModule } from './my-video-channels-routing.module'
7import { MyVideoChannelsComponent } from './my-video-channels.component'
746018f6 8import { SharedActorImageModule } from '@app/shared/shared-actor-image/shared-actor-image.module'
17119e4a
C
9
10@NgModule({
11 imports: [
12 MyVideoChannelsRoutingModule,
13
14 ChartModule,
15
16 SharedMainModule,
17 SharedFormModule,
cdeddff1 18 SharedGlobalIconModule,
746018f6 19 SharedActorImageModule
17119e4a
C
20 ],
21
22 declarations: [
a37e9e74 23 MyVideoChannelsComponent
17119e4a
C
24 ],
25
26 exports: [],
27 providers: []
28})
29export class MyVideoChannelsModule { }