eiam-favorite-pages
Version:
Stencil Component Starter
34 lines (30 loc) • 803 B
JavaScript
import { r as registerInstance, h } from './index-baeb39ff.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: '4a6f60fe85803a38cd025343bca1097eb8ee056d' }, "Hello, World! I'm ", this.getText());
}
};
MyComponent.style = MyComponentStyle0;
export { MyComponent as my_component };
//# sourceMappingURL=my-component.entry.js.map