fixed-react-data-grid-custom
Version:
Excel-like grid component built with React, with editors, keyboard navigation, copy & paste, and the like
8 lines • 351 B
JavaScript
import { __assign } from "tslib";
import React, { forwardRef } from 'react';
import CellMask from './CellMask';
var CopyMask = forwardRef(function CopyMask(props, ref) {
return (React.createElement(CellMask, __assign({}, props, { className: "react-grid-cell-copied", ref: ref })));
});
export default CopyMask;
//# sourceMappingURL=CopyMask.js.map