ednl-liftstatus-web-components
Version:
The EDNL LiftStatus web components
20 lines (19 loc) • 486 B
JavaScript
import { Host, h } from "@stencil/core";
export class LsHistory {
render() {
return (h(Host, null, h("fieldset", null, h("legend", null, "ls-history")), h("slot", null)));
}
static get is() { return "ls-history"; }
static get encapsulation() { return "shadow"; }
static get originalStyleUrls() {
return {
"$": ["ls-history.css"]
};
}
static get styleUrls() {
return {
"$": ["ls-history.css"]
};
}
}
//# sourceMappingURL=ls-history.js.map