useEffect Common Mistakes
#react#hooks#useEffect
Mistakes
- Forgetting dependencies
- Updating state incorrectly
- Causing infinite loops
Correct Usage
useEffect(() => {
fetchData()
}, [])
This is my studio page where I share all of my projects , experiments , learnings , blogs/articles , and also I share daily or frequent logs of my learnings or what currently I am working on.
useEffect(() => {
fetchData()
}, [])