import { Component, Input } from '@angular/core';

@Component({
    moduleId: module.id+ '',
    selector: 'attribute',
    templateUrl: './tpl.attribute.pug'
})

export class AttributeComponent {

    @Input('label') label:string;
    @Input('value') value:string;

    constructor() {}
}