Skip to content

Commit f879f06

Browse files
committed
style(story): change indent of the radios story
1 parent 8ffc121 commit f879f06

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

story/inputs.stories.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@ stories.addDecorator(withKnobs);
99
stories.add('input.radio', () => {
1010
const isDark = boolean('is-dark', false) ? 'is-dark' : '';
1111

12-
return (`
13-
<label>
12+
return (
13+
`<label>
1414
<input type="radio" class="nes-radio ${isDark}" name="answer" checked />
1515
<span>Yes</span>
16-
</label> <label>
16+
</label>
17+
<label>
1718
<input type="radio" class="nes-radio ${isDark}" name="answer" />
1819
<span>No</span>
1920
</label>`

0 commit comments

Comments
 (0)