Created
March 7, 2019 13:00
-
-
Save BretCameron/4741a860cc5a8b7d6716d4e1c4685dea to your computer and use it in GitHub Desktop.
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
changeSkin() { | |
const newState = this.state; | |
this.state.skin === 'night' ? newState.skin = 'day' : newState.skin = 'night'; | |
this.setState(newState); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment