React Hooks | useLayoutEffect Hook

The third addition to the React Hooks list, the useLayoutEffect
hook is quite an interesting one, and we’ll see why in a second.
First, what is this hook all about?
According to the Official React Documentation, the information about the useLayoutEffect
hook that we’re getting is:
The signature is identical to
useEffect
, but it fires synchronously after…