mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
35 lines
612 B
JavaScript
35 lines
612 B
JavaScript
/* eslint-disable import/no-extraneous-dependencies */
|
|
import globalThis from 'global';
|
|
import { LitElement } from 'lit';
|
|
|
|
const { customElements } = globalThis;
|
|
|
|
/**
|
|
*
|
|
* @tag sb-html
|
|
*/
|
|
export class SbHtml extends LitElement {
|
|
static get properties() {
|
|
return {
|
|
content: { type: String },
|
|
};
|
|
}
|
|
|
|
constructor() {
|
|
super();
|
|
this.content = '';
|
|
}
|
|
|
|
render() {
|
|
this.renderRoot.innerHTML = this.content;
|
|
}
|
|
|
|
// render into the light dom so we can test this
|
|
createRenderRoot() {
|
|
return this;
|
|
}
|
|
}
|
|
|
|
export const HtmlTag = 'sb-html';
|
|
customElements.define(HtmlTag, SbHtml);
|