Last active
September 1, 2017 22:20
-
-
Save peterkle/d1597b4614c00493e3a685c77f095952 to your computer and use it in GitHub Desktop.
React component example
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
// <ToggleSwitch /> | |
class ToggleSwitch extends Component { | |
onClickHandler = () => { | |
this.setState((prevState) => ({ on: !prevState.on })); | |
this.props.clickHandler(); | |
} | |
// … | |
} | |
// Elsewhere in app | |
<ToggleSwitch clickHandler={this.props.UiState.doSomething} /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment