Don't useEffect as callback!
Apr 11, 2020
The useEffect hook in React is sometimes not easy to understand. It can be hard to get it working properly. You might have missing dependencies, cause a stale closure or an infinite loop. In this blog post, we'll have a look at a common misuse of the useEffect hook. It doesn't cause an error, but it…