implement-react-hooks
implement-react-hooks copied to clipboard
Calling callback in the useEffect itself is wrong
https://github.com/rohitpotato/implement-react-hooks/blob/be021ac9dfafc84d91d62f280fcb979e703cc4f1/hooks.js#L54
According to react, the effect is run after the render and commit finishes but this code is calling cb in the body of useEffect itself.