mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
14 lines
616 B
TypeScript
14 lines
616 B
TypeScript
import { Component } from '@angular/core';
|
|
import { slideSidebarPadding } from '../../../../../../../app/shared/animations/slide';
|
|
import { FileSectionComponent as BaseComponent } from '../../../../../../../app/item-page/simple/field-components/file-section/file-section.component';
|
|
|
|
@Component({
|
|
selector: 'ds-item-page-file-section',
|
|
// templateUrl: './file-section.component.html',
|
|
templateUrl: '../../../../../../../app/item-page/simple/field-components/file-section/file-section.component.html',
|
|
animations: [slideSidebarPadding],
|
|
})
|
|
export class FileSectionComponent extends BaseComponent {
|
|
|
|
}
|