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