Fix bug when quitting NSFW video
[oweals/peertube.git] / client / src / app / account / account.module.ts
1 import { NgModule } from '@angular/core'
2
3 import { AccountRoutingModule } from './account-routing.module'
4 import { AccountComponent } from './account.component'
5 import { AccountChangePasswordComponent } from './account-change-password'
6 import { AccountDetailsComponent } from './account-details'
7 import { AccountService } from './account.service'
8 import { SharedModule } from '../shared'
9
10 @NgModule({
11   imports: [
12     AccountRoutingModule,
13     SharedModule
14   ],
15
16   declarations: [
17     AccountComponent,
18     AccountChangePasswordComponent,
19     AccountDetailsComponent
20   ],
21
22   exports: [
23     AccountComponent
24   ],
25
26   providers: []
27 })
28 export class AccountModule { }