PeerTube_original/client/src/app/+accounts/accounts.module.ts
2018-04-25 16:56:13 +02:00

29 lines
778 B
TypeScript

import { NgModule } from '@angular/core'
import { SharedModule } from '../shared'
import { AccountsRoutingModule } from './accounts-routing.module'
import { AccountsComponent } from './accounts.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: [
AccountsRoutingModule,
SharedModule
],
declarations: [
AccountsComponent,
AccountVideosComponent,
AccountVideoChannelsComponent,
AccountAboutComponent
],
exports: [
AccountsComponent
],
providers: []
})
export class AccountsModule { }