File size: 408 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 |
import { useEffect, useLayoutEffect } from 'react'
// For server-side rendering: https://github.com/react-spring/zustand/pull/34
// Deno support: https://github.com/pmndrs/zustand/issues/347
const isSSR =
typeof window === 'undefined' ||
!window.navigator ||
/ServerSideRendering|^Deno\//.test(window.navigator.userAgent)
export const useIsomorphicLayoutEffect = isSSR ? useEffect : useLayoutEffect
|