UNPKG

react-beautiful-dnd-next

Version:

Beautiful and accessible drag and drop for lists with React

11 lines (8 loc) 302 B
// @flow import invariant from 'tiny-invariant'; import type { DroppableDimension, Scrollable } from '../types'; export default (droppable: DroppableDimension): Scrollable => { const frame: ?Scrollable = droppable.frame; invariant(frame, 'Expected Droppable to have a frame'); return frame; };