Skip to content

Instantly share code, notes, and snippets.

@8mist
Created May 3, 2023 07:51
Show Gist options
  • Save 8mist/28a360fe398fb5368c119f44d970c939 to your computer and use it in GitHub Desktop.
Save 8mist/28a360fe398fb5368c119f44d970c939 to your computer and use it in GitHub Desktop.
import React from 'react'
const IS_SERVER = typeof window === 'undefined'
export const useIsomorphicLayoutEffect = IS_SERVER
? React.useEffect
: React.useLayoutEffect
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment