Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save devstojko/88fc6d9920cbfe24ccfa7d176c78aad2 to your computer and use it in GitHub Desktop.
Save devstojko/88fc6d9920cbfe24ccfa7d176c78aad2 to your computer and use it in GitHub Desktop.
React Notes
# Set state
state = {on: false}
onToggle = () => {
this.setState(currentState => {
return { on: !currentState.on}
},
() => {
this.props.onToggle(this.state.on)
}
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment