angular-jsf-components
Version:
JSF Compliant Angular Components
22 lines (16 loc) • 412 B
text/typescript
import {Component, Input, OnInit, TemplateRef, ViewChild} from '@angular/core';
({
selector: 'ui-define',
templateUrl: './ui-define.component.html',
styleUrls: ['./ui-define.component.css']
})
export class UiDefineComponent implements OnInit {
()
name: string;
(TemplateRef)
content: TemplateRef<any>;
constructor() {
}
ngOnInit() {
}
}