mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-13 21:13:07 +00:00
40416: started on simple item view page
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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() {
|
||||
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user