fixed-react-data-grid-custom
Version:
Excel-like grid component built with React, with editors, keyboard navigation, copy & paste, and the like
9 lines (8 loc) • 329 B
TypeScript
import React from 'react';
interface Props {
onDragStart: React.DragEventHandler<HTMLDivElement>;
onDragEnd: React.DragEventHandler<HTMLDivElement>;
onDoubleClick: React.MouseEventHandler<HTMLDivElement>;
}
export default function DragHandle({ onDragStart, onDragEnd, onDoubleClick }: Props): JSX.Element;
export {};