mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-08 10:34:15 +00:00
39 lines
1.1 KiB
TypeScript
39 lines
1.1 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';
|
|
import { CdkTreeModule } from '@angular/cdk/tree';
|
|
|
|
|
|
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,
|
|
CdkTreeModule,
|
|
],
|
|
declarations: [
|
|
...DECLARATIONS
|
|
],
|
|
exports: [
|
|
...DECLARATIONS,
|
|
CdkTreeModule,
|
|
],
|
|
})
|
|
export class CommunityListPageModule {
|
|
|
|
}
|