https://medium.com/@alexandereardon/uselayouteffect-and-ssr-192986cdcf7a
import useLayoutEffect from './use-isomorphic-layout-effect';
function App() {
useLayoutEffect(() => {
console.log('hello there');
}, []);
return 'Hello world';
};
// use-isomorphic-layout-effect.js
import { useLayoutEffect, useEffect } from 'react';
const useIsomorphicLayoutEffect =
typeof window !== 'undefined' ? useLayoutEffect : useEffect;
export default useIsomorphicLayoutEffect;
https://medium.com/@alexandereardon/uselayouteffect-and-ssr-192986cdcf7a