How NOT to fetch data in REACT components!!

How NOT to fetch data in REACT components!!

question by botplayer : WHy we should never update the state in the render logic (example like data fetching)?

Answer: IT causes infinite re-rendering. you can check at the network section, in the no. of request where request kept increasing infinitely. So, render Logic should not contain special effects these are to be called by a event handlers or useEffect().