mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-15 14:03:06 +00:00
fixed core and shared module usage, lazy loading modules
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import { Component, Input } from '@angular/core';
|
||||
|
||||
/**
|
||||
* This component renders any content inside this wrapper.
|
||||
* The wrapper prints a label before the content (if available)
|
||||
*/
|
||||
@Component({
|
||||
selector: 'ds-metadata-field-wrapper',
|
||||
styleUrls: ['./metadata-field-wrapper.component.scss'],
|
||||
templateUrl: './metadata-field-wrapper.component.html'
|
||||
})
|
||||
export class MetadataFieldWrapperComponent {
|
||||
|
||||
@Input() label: string;
|
||||
|
||||
}
|
Reference in New Issue
Block a user