aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+account/account.module.ts
blob: 2fe67f3c590ae52fe6d7c60fcbc3da8b1a65df3e (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
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'

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

  declarations: [
    AccountComponent,
    AccountVideosComponent,
    AccountAboutComponent
  ],

  exports: [
    AccountComponent
  ],

  providers: []
})
export class AccountModule { }