Skip to content

Commit e499785

Browse files
arcostasiurish
authored andcommitted
fix(arduino-uno): end of the elements tag
1 parent bb4dcc8 commit e499785

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

src/arduino-uno-element.stories.ts

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,23 @@ storiesOf('Arduino Uno', module)
99
.add(
1010
'Uno R3',
1111
() => html`
12-
<wokwi-arduino-uno
12+
<wokwi-arduino-uno
1313
.led13=${boolean('LED 13', false)}
1414
.ledTX=${boolean('TX LED', false)}
1515
.ledRX=${boolean('RX LED', false)}
1616
.ledPower=${boolean('Power LED', true)}
17-
></wokwi-7segment>
17+
></wokwi-arduino-uno>
1818
`
1919
)
2020
.add(
2121
'Uno R3 (Large)',
2222
() => html`
23-
<wokwi-arduino-uno style="zoom: 2"
24-
.led13=${boolean('LED 13', false)}
25-
.ledTX=${boolean('TX LED', false)}
26-
.ledRX=${boolean('RX LED', false)}
27-
.ledPower=${boolean('Power LED', true)}
28-
></wokwi-7segment>
29-
`
23+
<wokwi-arduino-uno
24+
style="zoom: 2"
25+
.led13=${boolean('LED 13', false)}
26+
.ledTX=${boolean('TX LED', false)}
27+
.ledRX=${boolean('RX LED', false)}
28+
.ledPower=${boolean('Power LED', true)}
29+
></wokwi-arduino-uno>
30+
`
3031
);

0 commit comments

Comments
 (0)