Skip to content

Instantly share code, notes, and snippets.

@smeijer
Created August 2, 2019 17:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smeijer/43a4f9fa2c526c5049114c7b651f5e9c to your computer and use it in GitHub Desktop.
Save smeijer/43a4f9fa2c526c5049114c7b651f5e9c to your computer and use it in GitHub Desktop.
medium-costs-of-optional-chaining-1
componentDidUpdate(prevProps) {
if (
this.props.image?.type !== prevProps.image?.type ||
this.props.image?.orientation !== prevProps.image?.orientation
) {
// ...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment