Skip to content

Instantly share code, notes, and snippets.

@Pyrolistical
Last active October 2, 2021 06:39
Show Gist options
  • Save Pyrolistical/aed12c25fc7667a7b9d5aa40e7ed483a to your computer and use it in GitHub Desktop.
Save Pyrolistical/aed12c25fc7667a7b9d5aa40e7ed483a to your computer and use it in GitHub Desktop.
const BrokenComponent = (props) => {
useEffect(() => {
console.log('BrokenComponent called useEffect');
}, [props]); // THIS IS ALWAYS WRONG!
return <code>{JSON.stringify(props)}</code>;
};
const GoodComponent = (props) => {
useEffect(() => {
console.log('GoodComponent called useEffect');
}, [JSON.stringify(props)]); // Cheesy fix, better to explicitly list all props
return <code>{JSON.stringify(props)}</code>;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment