diff options
Diffstat (limited to 'examples/framework-lit/src/components/Test.js')
-rw-r--r-- | examples/framework-lit/src/components/Test.js | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/examples/framework-lit/src/components/Test.js b/examples/framework-lit/src/components/Test.js deleted file mode 100644 index 7f565f777..000000000 --- a/examples/framework-lit/src/components/Test.js +++ /dev/null @@ -1,19 +0,0 @@ -import { LitElement, html } from 'lit'; - -export const tagName = 'calc-add'; - -class CalcAdd extends LitElement { - static get properties() { - return { - num: { - type: Number, - }, - }; - } - - render() { - return html` <div>Number: ${this.num}</div> `; - } -} - -customElements.define(tagName, CalcAdd); |