Skip to main content

DragAndDrop

const DragAndDrop: React.FC<React.PropsWithChildren<{
className?: string;
colorScheme: ColorScheme;
hasError?: boolean;
isDisabled?: boolean;
onDragOver?: (e) => void;
onDrop?: (e, files?, items?) => void;
}>>;