Skip to content

Instantly share code, notes, and snippets.

@kurtisdunn
Created February 2, 2021 05:41
Show Gist options
  • Save kurtisdunn/801d6cce5b82b099e37a00208fab56df to your computer and use it in GitHub Desktop.
Save kurtisdunn/801d6cce5b82b099e37a00208fab56df to your computer and use it in GitHub Desktop.
React Component Cheat Sheet.
static getDerivedStateFromProps(props, current_state) {
console.log(props)
if (current_state.data !== props.data) {
return [{
id: props.id,
data: props.data
}]
}
return null
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment