mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
13 lines
300 B
TypeScript
13 lines
300 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
/**
|
|
* Component for managing a community's curation tasks
|
|
*/
|
|
@Component({
|
|
selector: 'ds-community-curate',
|
|
templateUrl: './community-curate.component.html',
|
|
})
|
|
export class CommunityCurateComponent {
|
|
/* TODO: Implement Community Edit - Curate */
|
|
}
|