File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments