Skip to content

Instantly share code, notes, and snippets.

@devhammed
Created February 3, 2026 08:40
Show Gist options
  • Select an option

  • Save devhammed/ee1cceef6d3e5a957089a7957383f309 to your computer and use it in GitHub Desktop.

Select an option

Save devhammed/ee1cceef6d3e5a957089a7957383f309 to your computer and use it in GitHub Desktop.
Use Effect That Works On Server and Browser.
import * as React from 'react';
const useIsomorphicLayoutEffect = typeof window !== 'undefined' ? React.useLayoutEffect : React.useEffect;
export { useIsomorphicLayoutEffect };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment