Skip to content

Instantly share code, notes, and snippets.

@tdeekens
Last active October 25, 2018 18:45
Show Gist options
  • Save tdeekens/d03895fc75d59f9f90a7d370e2738f65 to your computer and use it in GitHub Desktop.
Save tdeekens/d03895fc75d59f9f90a7d370e2738f65 to your computer and use it in GitHub Desktop.
class UIComponent extends React.Component {
handleChange = event => {};
render() {
return (
<RadioGroup
name="size"
value={this.props.tshirt.size}
onChange={this.handleChange}
>
<RadioOption value="m">M</RadioOption>
<RadioOption value="l">L</RadioOption>
<RadioOption value="xl">XL</RadioOption>
</RadioGroup>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment