]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+account/account.module.ts
Add account view
[github/Chocobozzz/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
8 @NgModule({
9 imports: [
10 AccountRoutingModule,
11 SharedModule
12 ],
13
14 declarations: [
15 AccountComponent,
16 AccountVideosComponent,
17 AccountAboutComponent
18 ],
19
20 exports: [
21 AccountComponent
22 ],
23
24 providers: []
25 })
26 export class AccountModule { }