File size: 144 Bytes
1e92f2d |
1 2 3 4 5 |
import React from 'react';
export const useIsomorphicLayoutEffect =
typeof window !== 'undefined' ? React.useLayoutEffect : React.useEffect;
|
1e92f2d |
1 2 3 4 5 |
import React from 'react';
export const useIsomorphicLayoutEffect =
typeof window !== 'undefined' ? React.useLayoutEffect : React.useEffect;
|