jungpaeng/sagen

View on GitHub
src/hooks/useIsomorphicLayoutEffect.ts

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';

const isSSR =
  typeof window === 'undefined' ||
  !window.navigator ||
  /ServerSideRendering|^Deno\//.test(window.navigator.userAgent);

export const useIsomorphicLayoutEffect = isSSR ? React.useEffect : React.useLayoutEffect;