Skip to content

Instantly share code, notes, and snippets.

@danieljpgo
Last active April 23, 2022 17:51
Show Gist options
  • Save danieljpgo/430505ccf3e91814af6e97133d9fdb62 to your computer and use it in GitHub Desktop.
Save danieljpgo/430505ccf3e91814af6e97133d9fdb62 to your computer and use it in GitHub Desktop.
import * as React from 'react';
export const useIsomorphicLayoutEffect = typeof window === 'object'
? React.useLayoutEffect
: React.useEffect;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment