Skip to content

Instantly share code, notes, and snippets.

@Bear-Foot
Last active August 29, 2015 14:24
Show Gist options
  • Save Bear-Foot/bc48e0e91bbf921297c8 to your computer and use it in GitHub Desktop.
Save Bear-Foot/bc48e0e91bbf921297c8 to your computer and use it in GitHub Desktop.
WillReceiveProps
componentWillMount () {
this.foo(this.props)
},
componentWillReceiveProps (nextProps) {
this.foo(nextProps)
},
foo(props) {
//code
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment