mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
14 lines
352 B
TypeScript
14 lines
352 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
/**
|
|
* Page with title and the community list tree, as described in community-list.component;
|
|
* navigated to with community-list.page.routing.module
|
|
*/
|
|
@Component({
|
|
selector: 'ds-community-list-page',
|
|
templateUrl: './community-list-page.component.html',
|
|
})
|
|
export class CommunityListPageComponent {
|
|
|
|
}
|