Запитання 11
What is the difference between useEffect and useLayoutEffect in React?
Варіанти відповідей
useEffect runs asynchronously after paint; useLayoutEffect runs synchronously before paint, blocking rendering.
useEffect blocks rendering; useLayoutEffect runs after user interactions.
useEffect is only for data fetching; useLayoutEffect is only for animations.
useEffect runs only once; useLayoutEffect runs on every render.