mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
15 lines
685 B
TypeScript
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 {
|
|
}
|