UNPKG

react-dnd

Version:

Drag and Drop for React

6 lines (4 loc) 210 B
import { useEffect, useLayoutEffect } from 'react' // suppress the useLayoutEffect warning on server side. export const useIsomorphicLayoutEffect = typeof window !== 'undefined' ? useLayoutEffect : useEffect