Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. const useDidUpdate = () => {
  2. const isNotMounted = useRef(true);
  3. useEffect(() => {
  4. if (isNotMounted.current) {
  5. isNotMounted.current = false;
  6. }
  7. });
  8.  
  9. return !isNotMounted.current;
  10. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement