Skip to content

Instantly share code, notes, and snippets.

@jaxxreal
Created October 22, 2016 13:09
Show Gist options
  • Save jaxxreal/84445d7553db19aed8d58eb3674c696e to your computer and use it in GitHub Desktop.
Save jaxxreal/84445d7553db19aed8d58eb3674c696e to your computer and use it in GitHub Desktop.
PureCheckbox example
class PureCheckbox extends Component {
shouldComponentUpdate(nextProps) {
return nextProps.label !== this.props.label || nextProps.checked !== this.props.checked;
}
render() {
return <Checkbox {...this.props}/>;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment