@atlaskit/pragmatic-drag-and-drop-react-beautiful-dnd-migration
Version:
An optional Pragmatic drag and drop package that enables rapid migration from react-beautiful-dnd to Pragmatic drag and drop
7 lines (6 loc) • 410 B
TypeScript
import { type ReactElement, type ReactNode } from 'react';
import type { DragDropContextProps } from 'react-beautiful-dnd';
export declare function resetServerContext(): void;
export declare function DragDropContext({ children, dragHandleUsageInstructions, nonce, onBeforeCapture, onBeforeDragStart, onDragStart, onDragUpdate, onDragEnd, }: DragDropContextProps & {
children?: ReactNode;
}): ReactElement;