Files
dspace-angular/src/themes/custom/app/item-page/full/field-components/file-section/full-file-section.component.ts
2023-01-19 15:33:18 +01:00

15 lines
685 B
TypeScript

import { Component } from '@angular/core';
import {
FullFileSectionComponent as BaseComponent
} from '../../../../../../../app/item-page/full/field-components/file-section/full-file-section.component';
@Component({
selector: 'ds-item-page-full-file-section',
// styleUrls: ['./full-file-section.component.scss'],
styleUrls: ['../../../../../../../app/item-page/full/field-components/file-section/full-file-section.component.scss'],
// templateUrl: './full-file-section.component.html',
templateUrl: '../../../../../../../app/item-page/full/field-components/file-section/full-file-section.component.html',
})
export class FullFileSectionComponent extends BaseComponent {
}