Skip to content

Commit

Permalink
Reverted index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
loganscharen committed Mar 12, 2024
1 parent 3b3fbc0 commit e94aaa1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions examples/basic/forms/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,21 +45,21 @@ class Forms extends Component {
<input type="text" />
</fieldset>
<fieldset>
<legend>Checkbox buttons</legend>
<legend>Radio buttons</legend>
<label>
<input id="checkbox-a" name="checkbox-a" type="checkbox" /> A
<input id="radio-a" name="radios" type="radio" /> A
</label>
<label>
<input id="checkbox-b" name="checkbox-b" type="checkbox" /> B
<input id="radio-b" name="radios" type="radio" /> B
</label>
</fieldset>
<fieldset>
<legend>Radio buttons</legend>
<legend>Checkbox buttons</legend>
<label>
<input id="radio-a" name="radios" type="radio" /> A
<input id="checkbox-a" name="checkbox-a" type="checkbox" /> A
</label>
<label>
<input id="radio-b" name="radios" type="radio" /> B
<input id="checkbox-b" name="checkbox-b" type="checkbox" /> B
</label>
</fieldset>
<input type="text" />
Expand Down

0 comments on commit e94aaa1

Please sign in to comment.