epic-react-exercises icon indicating copy to clipboard operation
epic-react-exercises copied to clipboard

Refactor `useNextEffect = typeof window !== "undefined" ? useLayoutEffect : useEffect`

Open mithi opened this issue 4 years ago • 0 comments

I'm calling this everywhere move is somewhere and call it from there so that I don't always copy paste this everywhere

const useNextEffect = typeof window !== "undefined" ? useLayoutEffect : useEffect

in the following files:

  • main.js
  • use-async.js
  • react/advanced-hooks/3
  • react/advanced-hooks/2

mithi avatar Feb 06 '21 19:02 mithi