diff options
Diffstat (limited to 'examples/framework-lit/src/components/Test.js')
-rw-r--r-- | examples/framework-lit/src/components/Test.js | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/examples/framework-lit/src/components/Test.js b/examples/framework-lit/src/components/Test.js index 75d592871..182755c79 100644 --- a/examples/framework-lit/src/components/Test.js +++ b/examples/framework-lit/src/components/Test.js @@ -6,16 +6,14 @@ class CalcAdd extends LitElement { static get properties() { return { num: { - type: Number - } + type: Number, + }, }; } render() { - return html` - <div>Number: ${this.num}</div> - `; + return html` <div>Number: ${this.num}</div> `; } } -customElements.define(tagName, CalcAdd);
\ No newline at end of file +customElements.define(tagName, CalcAdd); |