aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+account/account.module.ts
blob: 82ef06e76d9129b42c93df5df9f6b7138a628ef7 (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
import { NgModule } from '@angular/core'
import { SharedModule } from '../shared'
import { AccountRoutingModule } from './account-routing.module'
import { AccountComponent } from './account.component'
import { AccountVideosComponent } from './account-videos/account-videos.component'
import { AccountAboutComponent } from './account-about/account-about.component'
import { AccountVideoChannelsComponent } from './account-video-channels/account-video-channels.component'

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

  declarations: [
    AccountComponent,
    AccountVideosComponent,
    AccountVideoChannelsComponent,
    AccountAboutComponent
  ],

  exports: [
    AccountComponent
  ],

  providers: []
})
export class AccountModule { }