forked from hazza/dspace-angular
36 lines
1.0 KiB
TypeScript
36 lines
1.0 KiB
TypeScript
import { CommonModule } from '@angular/common';
|
|
import { NgModule } from '@angular/core';
|
|
import { SharedModule } from '../shared/shared.module';
|
|
import { CommunityListPageComponent } from './community-list-page.component';
|
|
import { CommunityListPageRoutingModule } from './community-list-page.routing.module';
|
|
import { CommunityListComponent } from './community-list/community-list.component';
|
|
import { ThemedCommunityListPageComponent } from './themed-community-list-page.component';
|
|
import { ThemedCommunityListComponent } from './community-list/themed-community-list.component';
|
|
|
|
|
|
const DECLARATIONS = [
|
|
CommunityListPageComponent,
|
|
CommunityListComponent,
|
|
ThemedCommunityListPageComponent,
|
|
ThemedCommunityListComponent
|
|
];
|
|
/**
|
|
* The page which houses a title and the community list, as described in community-list.component
|
|
*/
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
SharedModule,
|
|
CommunityListPageRoutingModule
|
|
],
|
|
declarations: [
|
|
...DECLARATIONS
|
|
],
|
|
exports: [
|
|
...DECLARATIONS,
|
|
],
|
|
})
|
|
export class CommunityListPageModule {
|
|
|
|
}
|