Skip to content

Instantly share code, notes, and snippets.

@NoamELB
Created December 15, 2017 21:04
Show Gist options
  • Save NoamELB/de5f6aeb8f44e2d1c65e08242444a3e8 to your computer and use it in GitHub Desktop.
Save NoamELB/de5f6aeb8f44e2d1c65e08242444a3e8 to your computer and use it in GitHub Desktop.
componentWillReceiveProps(nextProps) {
const { value } = nextProps;
if (this.props.value !== value && this.state.value !== value) {
this.setState({ value });
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment