Created
September 4, 2018 12:37
-
-
Save almond-bongbong/983c4c7496e00e61848eda606e752c54 to your computer and use it in GitHub Desktop.
This file contains 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
incrementCount(prevState, props) { | |
return { | |
count: prevState.count + 1, | |
}; | |
} | |
handleCount() { | |
this.setState(incrementCount); | |
this.setState(incrementCount); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment