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