UNPKG

@hello-pangea/dnd

Version:

Beautiful and accessible drag and drop for lists with React

7 lines (5 loc) 297 B
import type { DraggableDescriptor, DragImpact } from '../../types'; import whatIsDraggedOver from './what-is-dragged-over'; // use placeholder if dragged over export default (descriptor: DraggableDescriptor, impact: DragImpact): boolean => whatIsDraggedOver(impact) === descriptor.droppableId;