useEffect vs. useLayoutEffect
Question : I'm wondering, if we could use useLayoutEffect instead of useEffect here as well.
Answer:
useLayoutEffect runs before the useEffect hook. This is because the useLayoutEffect is fired synchronously after DOM gets mutated and before the brow...
omarsaade.hashnode.dev1 min read