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