Skip to content

Instantly share code, notes, and snippets.

@pedrogk
Created August 20, 2018 18:09
Show Gist options
  • Save pedrogk/e48525438ddf5f33299df0449877a4f0 to your computer and use it in GitHub Desktop.
Save pedrogk/e48525438ddf5f33299df0449877a4f0 to your computer and use it in GitHub Desktop.
Toggle normal
class Toggle extends Component {
state = {
on: false
}
toggle = () => {
this.setState(() => {
on: !this.state.on
})
}
render() {
return <Checkbox onClick={this.toggle} checked={this.state.on} />
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment