UNPKG

angular-jsf-components

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