Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
tacigar committed Mar 10, 2020
1 parent db9d7d7 commit aa6992e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 14 deletions.
10 changes: 2 additions & 8 deletions docs/src/pages/components/checkboxes/CheckboxLabels.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,7 @@ export default function CheckboxLabels() {
return (
<FormGroup row>
<FormControlLabel
control={
<Checkbox checked={state.checkedA} onChange={handleChange} value="checkedA" />
}
control={<Checkbox checked={state.checkedA} onChange={handleChange} value="checkedA" />}
label="Secondary"
/>
<FormControlLabel
Expand Down Expand Up @@ -66,11 +64,7 @@ export default function CheckboxLabels() {
/>
<FormControlLabel
control={
<GreenCheckbox
checked={state.checkedG}
onChange={handleChange}
value="checkedG"
/>
<GreenCheckbox checked={state.checkedG} onChange={handleChange} value="checkedG" />
}
label="Custom color"
/>
Expand Down
8 changes: 2 additions & 6 deletions docs/src/pages/components/checkboxes/CheckboxesGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,7 @@ export default function CheckboxesGroup() {
label="Jason Killian"
/>
<FormControlLabel
control={
<Checkbox checked={antoine} onChange={handleChange} value="antoine" />
}
control={<Checkbox checked={antoine} onChange={handleChange} value="antoine" />}
label="Antoine Llorca"
/>
</FormGroup>
Expand All @@ -67,9 +65,7 @@ export default function CheckboxesGroup() {
label="Jason Killian"
/>
<FormControlLabel
control={
<Checkbox checked={antoine} onChange={handleChange} value="antoine" />
}
control={<Checkbox checked={antoine} onChange={handleChange} value="antoine" />}
label="Antoine Llorca"
/>
</FormGroup>
Expand Down

0 comments on commit aa6992e

Please sign in to comment.