12 lines
439 B
JavaScript
12 lines
439 B
JavaScript
import { invariant } from '@react-dnd/invariant';
|
|
import { useContext } from 'react';
|
|
import { DndContext } from '../core/index.js';
|
|
/**
|
|
* A hook to retrieve the DragDropManager from Context
|
|
*/ export function useDragDropManager() {
|
|
const { dragDropManager } = useContext(DndContext);
|
|
invariant(dragDropManager != null, 'Expected drag drop context');
|
|
return dragDropManager;
|
|
}
|
|
|
|
//# sourceMappingURL=useDragDropManager.js.map
|