Skip to content

Instantly share code, notes, and snippets.

@BretCameron
Created March 7, 2019 13:00
Show Gist options
  • Save BretCameron/4741a860cc5a8b7d6716d4e1c4685dea to your computer and use it in GitHub Desktop.
Save BretCameron/4741a860cc5a8b7d6716d4e1c4685dea to your computer and use it in GitHub Desktop.
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