ngx-favorite-pages
Version:
Stencil Component Starter
34 lines (30 loc) • 803 B
JavaScript
import { r as registerInstance, h } from './index-60be8878.js';
import { f as format } from './utils-11fcde98.js';
const myComponentCss = ":host{display:block}";
const MyComponentStyle0 = myComponentCss;
const MyComponent = class {
constructor(hostRef) {
registerInstance(this, hostRef);
}
/**
* The first name
*/
first;
/**
* The middle name
*/
middle;
/**
* The last name
*/
last;
getText() {
return format(this.first, this.middle, this.last);
}
render() {
return h("div", { key: 'dc5162c75e01d167574a87866cdbde923c7b8997' }, "Hello, World! I'm ", this.getText());
}
};
MyComponent.style = MyComponentStyle0;
export { MyComponent as my_component };
//# sourceMappingURL=my-component.entry.js.map