Add video channel account list
[oweals/peertube.git] / client / src / app / +account / account.module.ts
1 import { NgModule } from '@angular/core'
2 import { SharedModule } from '../shared'
3 import { AccountRoutingModule } from './account-routing.module'
4 import { AccountComponent } from './account.component'
5 import { AccountVideosComponent } from './account-videos/account-videos.component'
6 import { AccountAboutComponent } from './account-about/account-about.component'
7 import { AccountVideoChannelsComponent } from './account-video-channels/account-video-channels.component'
8
9 @NgModule({
10   imports: [
11     AccountRoutingModule,
12     SharedModule
13   ],
14
15   declarations: [
16     AccountComponent,
17     AccountVideosComponent,
18     AccountVideoChannelsComponent,
19     AccountAboutComponent
20   ],
21
22   exports: [
23     AccountComponent
24   ],
25
26   providers: []
27 })
28 export class AccountModule { }