Skip to content

Commit 3dfba73

Browse files
committed
fix: demo lint
1 parent 48c8bc7 commit 3dfba73

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

demo/src/button.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ class ButtonComponent extends LitElement {
77
label: String
88
};
99
}
10+
1011
render() {
11-
return html `<button>${this.label}</button>`;
12+
return html`<button>${this.label}</button>`;
1213
}
1314
}
1415

demo/src/goodbye-world.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ class GoodbyeWorld extends LitElement {
77
label: String
88
};
99
}
10+
1011
render() {
11-
return html `<div>Goodbye ${this.label}</div>`;
12+
return html`<div>Goodbye ${this.label}</div>`;
1213
}
1314
}
1415

demo/src/hello-world.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ class HelloWorld extends LitElement {
77
label: String
88
};
99
}
10+
1011
render() {
11-
return html `
12+
return html`
1213
<div>Hello ${this.label}</div>`;
1314
}
1415
}

0 commit comments

Comments
 (0)