Last active
October 2, 2021 06:39
-
-
Save Pyrolistical/aed12c25fc7667a7b9d5aa40e7ed483a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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