Drag and Drop
interface DataEditorProps {
onDragLeave?: (() => void);
onDragOverCell?: ((cell: Item, dataTransfer: DataTransfer | null) => void);
onDrop?: ((cell: Item, dataTransfer: DataTransfer | null) => void);
}onDragLeave
onDragLeave?: (() => void);onDragOverCell
onDragOverCell?: ((cell: Item, dataTransfer: DataTransfer | null) => void);onDrop
onDrop?: ((cell: Item, dataTransfer: DataTransfer | null) => void);Last updated