mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
27 lines
788 B
TypeScript
27 lines
788 B
TypeScript
import { CommonModule } from '@angular/common';
|
|
import { NgModule } from '@angular/core';
|
|
import { SharedModule } from '../shared/shared.module';
|
|
import { HomeNewsComponent } from './home-news/home-news.component';
|
|
import { HomePageRoutingModule } from './home-page-routing.module';
|
|
|
|
import { HomePageComponent } from './home-page.component';
|
|
import { TopLevelCommunityListComponent } from './top-level-community-list/top-level-community-list.component';
|
|
import { StatisticsModule } from '../statistics/statistics.module';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
SharedModule,
|
|
HomePageRoutingModule,
|
|
StatisticsModule.forRoot()
|
|
],
|
|
declarations: [
|
|
HomePageComponent,
|
|
TopLevelCommunityListComponent,
|
|
HomeNewsComponent,
|
|
]
|
|
})
|
|
export class HomePageModule {
|
|
|
|
}
|