mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
13 lines
280 B
TypeScript
13 lines
280 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
/**
|
|
* Component responsible for rendering the system wide Curation Task UI
|
|
*/
|
|
@Component({
|
|
selector: 'ds-admin-curation-task',
|
|
templateUrl: './admin-curation-tasks.component.html',
|
|
})
|
|
export class AdminCurationTasksComponent {
|
|
|
|
}
|