UNPKG

@hello-pangea/dnd

Version:

Beautiful and accessible drag and drop for lists with React

16 lines (11 loc) 300 B
import type { DroppableId, DropResult } from '../../types'; export default (result: DropResult): DroppableId | null => { const { combine, destination } = result; if (destination) { return destination.droppableId; } if (combine) { return combine.droppableId; } return null; };