mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-10 03:23:07 +00:00

at component initialisation/destruction so the state of the tree persists & documentation
27 lines
800 B
TypeScript
27 lines
800 B
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 { CdkTreeModule } from '@angular/cdk/tree';
|
|
|
|
/**
|
|
* The page which houses a title and the community list, as described in community-list.component
|
|
*/
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
SharedModule,
|
|
CommunityListPageRoutingModule,
|
|
CdkTreeModule,
|
|
],
|
|
declarations: [
|
|
CommunityListPageComponent,
|
|
CommunityListComponent
|
|
]
|
|
})
|
|
export class CommunityListPageModule {
|
|
|
|
}
|