mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-10 19:43:04 +00:00
65528: ComCol Tree with full FlatList that gets generated at page-load
This commit is contained in:
23
src/app/community-list-page/community-list-page.module.ts
Normal file
23
src/app/community-list-page/community-list-page.module.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
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';
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
CommonModule,
|
||||
SharedModule,
|
||||
CommunityListPageRoutingModule,
|
||||
CdkTreeModule,
|
||||
],
|
||||
declarations: [
|
||||
CommunityListPageComponent,
|
||||
CommunityListComponent
|
||||
]
|
||||
})
|
||||
export class CommunityListPageModule {
|
||||
|
||||
}
|
Reference in New Issue
Block a user