UNPKG

react-beautiful-dnd-next

Version:

Beautiful and accessible drag and drop for lists with React

11 lines (8 loc) 247 B
// @flow import React from 'react'; import type { DroppableId, TypeId } from '../../types'; export type DroppableContextValue = {| droppableId: DroppableId, type: TypeId, |}; export default React.createContext<?DroppableContextValue>(null);