mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-13 13:03:04 +00:00
21 lines
375 B
TypeScript
21 lines
375 B
TypeScript
import { Component, Input } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'ds-item-page-field-wrapper',
|
|
styleUrls: ['./item-page-field-wrapper.component.css'],
|
|
templateUrl: './item-page-field-wrapper.component.html'
|
|
})
|
|
export class ItemPageFieldWrapperComponent {
|
|
|
|
@Input() label: string;
|
|
constructor() {
|
|
this.universalInit();
|
|
|
|
}
|
|
|
|
universalInit() {
|
|
|
|
}
|
|
|
|
}
|