]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - 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
1 import { ChartModule } from 'primeng/chart'
2 import { NgModule } from '@angular/core'
3 import { SharedFormModule } from '@app/shared/shared-forms'
4 import { SharedGlobalIconModule } from '@app/shared/shared-icons'
5 import { SharedMainModule } from '@app/shared/shared-main'
6 import { MyVideoChannelsRoutingModule } from './my-video-channels-routing.module'
7 import { MyVideoChannelsComponent } from './my-video-channels.component'
8 import { SharedActorImageModule } from '@app/shared/shared-actor-image/shared-actor-image.module'
9
10 @NgModule({
11 imports: [
12 MyVideoChannelsRoutingModule,
13
14 ChartModule,
15
16 SharedMainModule,
17 SharedFormModule,
18 SharedGlobalIconModule,
19 SharedActorImageModule
20 ],
21
22 declarations: [
23 MyVideoChannelsComponent
24 ],
25
26 exports: [],
27 providers: []
28 })
29 export class MyVideoChannelsModule { }