UNPKG

angular-jsf-components

Version:
17 lines (14 loc) 387 B
import {Component, ElementRef, Input} from '@angular/core'; import {JsfCore} from '../../superclass/jsf-core'; @Component({ selector: 'c-if', templateUrl: './c-if.component.html', styleUrls: ['./c-if.component.css'], }) export class CIfComponent extends JsfCore { @Input() test: boolean; constructor(elementRef: ElementRef) { super(elementRef); } }