Files
dspace-angular/src/app/item-page/field-wrapper/item-page-field-wrapper.component.ts
2017-03-28 17:17:24 +02:00

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() {
}
}