Creates a new custom element class (web component) that can be registered within a DOM.
import * as appMetadata from "open-pioneer:app";const CustomElementClazz = createCustomElement({ component: <div>Hello World!</div>, appMetadata});customElements.define("sample-element", CustomElementClazz); Copy
import * as appMetadata from "open-pioneer:app";const CustomElementClazz = createCustomElement({ component: <div>Hello World!</div>, appMetadata});customElements.define("sample-element", CustomElementClazz);
Creates a new custom element class (web component) that can be registered within a DOM.