UNPKG

react-optimized-dnd

Version:

A React package for building performant drag-and-drop interfaces. Provides context provider, hooks, and type definitions for flexible, optimized DnD in React apps.

6 lines (5 loc) 180 B
import type { UseDroppableProps } from "./types"; export declare function useDroppable(props?: UseDroppableProps): { droppableRef: (node: any) => void; isOver: boolean; };