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-mistakes

---
title: "useEffect Common Mistakes"
tags: ["react", "hooks", "useEffect"]
description: "Things to avoid while using useEffect"
---

## Mistakes

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

### Correct Usage

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