My Studio

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 Common Mistakes

#react#hooks#useEffect

Mistakes

  1. Forgetting dependencies
  2. Updating state incorrectly
  3. Causing infinite loops

Correct Usage

useEffect(() => {
  fetchData()
}, [])