UNPKG

react-archer

Version:

Draw arrows between DOM elements in React

10 lines (8 loc) 349 B
import { useLayoutEffect, useEffect } from 'react'; /** * Ignores useLayoutEffect for server-side rendering. It's fine, since the * server can't draw the arrows. * https://medium.com/@alexandereardon/uselayouteffect-and-ssr-192986cdcf7a */ export const useIsomorphicLayoutEffect = typeof window !== 'undefined' ? useLayoutEffect : useEffect;