mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-08 02:24:11 +00:00
14 lines
334 B
TypeScript
14 lines
334 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
/**
|
|
* Component representing the external import page of the submission.
|
|
*/
|
|
@Component({
|
|
selector: 'ds-import-external-page',
|
|
templateUrl: './import-external-page.component.html',
|
|
styleUrls: ['./import-external-page.component.scss']
|
|
})
|
|
export class ImportExternalPageComponent {
|
|
|
|
}
|