UNPKG

@hello-pangea/dnd

Version:

Beautiful and accessible drag and drop for lists with React

10 lines (7 loc) 301 B
import { invariant } from '../invariant'; import type { DroppableDimension, Scrollable } from '../types'; export default (droppable: DroppableDimension): Scrollable => { const frame: Scrollable | null = droppable.frame; invariant(frame, 'Expected Droppable to have a frame'); return frame; };