angular-jsf-components
Version:
JSF Compliant Angular Components
17 lines (14 loc) • 459 B
text/typescript
import {Component, ElementRef, TemplateRef, ViewChild} from '@angular/core';
import {JsfCore} from '../../superclass/jsf-core';
({
selector: 'c-otherwise',
templateUrl: './c-otherwise.component.html',
styleUrls: ['./c-otherwise.component.css'],
})
export class COtherwiseComponent extends JsfCore {
(TemplateRef)
content: TemplateRef<any>;
constructor(elementRef: ElementRef) {
super(elementRef);
}
}