Created
June 5, 2018 19:39
-
-
Save devstojko/88fc6d9920cbfe24ccfa7d176c78aad2 to your computer and use it in GitHub Desktop.
React Notes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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