Files
Housekeeping-web-admin/node_modules/@hello-pangea/dnd/src/state/droppable/is-home-of.ts
T
2026-06-24 09:48:54 +02:00

7 lines
239 B
TypeScript

import type { DraggableDimension, DroppableDimension } from '../../types';
export default (
draggable: DraggableDimension,
destination: DroppableDimension,
): boolean => draggable.descriptor.droppableId === destination.descriptor.id;