angular-jsf-components
Version:
JSF Compliant Angular Components
18 lines (15 loc) • 534 B
text/typescript
import {Component, ElementRef, Input} from '@angular/core';
import {HFormService} from '../../services/h-form.service';
import {JsfElement} from '../../superclass/jsf-element';
({
selector: 'h-panel-group',
templateUrl: './h-panel-group.component.html',
styleUrls: ['./h-panel-group.component.css'],
})
export class HPanelGroupComponent extends JsfElement {
()
layout: string;
constructor(hFormService: HFormService, elementRef: ElementRef) {
super(hFormService, elementRef);
}
}