Created
February 3, 2026 08:40
-
-
Save devhammed/ee1cceef6d3e5a957089a7957383f309 to your computer and use it in GitHub Desktop.
Use Effect That Works On Server and Browser.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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