Skip to content

Instantly share code, notes, and snippets.

@kartikag01
Created August 30, 2018 05:47
Show Gist options
  • Save kartikag01/228d79fb5e1a7cbd8e60fa847e3259b2 to your computer and use it in GitHub Desktop.
Save kartikag01/228d79fb5e1a7cbd8e60fa847e3259b2 to your computer and use it in GitHub Desktop.
react method before change in lifecycle
componentWillReceiveProps(nextProps) {
if (nextProps.pageNo !== this.state.pageNo) {
this.setState({ pageNo: nextProps.pageNo });
fetchNextPageData(nextProps.pageNo);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment