aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/account/account.module.ts
blob: 2299c19199dd6e129c653f7b07d67b895c887e44 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import { NgModule } from '@angular/core'
import { SharedModule } from '../shared'
import { AccountRoutingModule } from './account-routing.module'
import { AccountChangePasswordComponent } from './account-settings/account-change-password/account-change-password.component'
import { AccountDetailsComponent } from './account-settings/account-details/account-details.component'
import { AccountSettingsComponent } from './account-settings/account-settings.component'
import { AccountComponent } from './account.component'
import { AccountVideosComponent } from './account-videos/account-videos.component'

@NgModule({
  imports: [
    AccountRoutingModule,
    SharedModule
  ],

  declarations: [
    AccountComponent,
    AccountSettingsComponent,
    AccountChangePasswordComponent,
    AccountDetailsComponent,
    AccountVideosComponent
  ],

  exports: [
    AccountComponent
  ],

  providers: []
})
export class AccountModule { }