1
0
Files
yel-dspace-angular/src/app/+home/home.module.ts
2017-09-26 11:44:07 -05:00

26 lines
713 B
TypeScript

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { TranslateModule } from '@ngx-translate/core';
import { HomeComponent } from './home.component';
import { HomeRoutingModule } from './home-routing.module';
import { TopLevelCommunityListComponent } from './top-level-community-list/top-level-community-list.component';
import { HomeNewsComponent } from './home-news/home-news.component';
import { SharedModule } from '../shared/shared.module';
@NgModule({
imports: [
CommonModule,
SharedModule,
HomeRoutingModule
],
declarations: [
HomeComponent,
TopLevelCommunityListComponent,
HomeNewsComponent
]
})
export class HomeModule { }