40416: started on simple item view page

This commit is contained in:
Lotte Hofstede
2017-03-28 17:17:24 +02:00
parent 52c0a82ce7
commit 66e421a1eb
24 changed files with 358 additions and 56 deletions

View File

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