UNPKG

ts-mean

Version:

Boilerplate for a TS-MEAN App

13 lines (9 loc) 208 B
import {Component, Input} from '@angular/core'; @Component({ selector: 'spacer', template: `<div [style.height]="height + 'px'"></div>` }) export class SpacerComponent { @Input() height: number; }