fixed-react-data-grid-custom
Version:
Excel-like grid component built with React, with editors, keyboard navigation, copy & paste, and the like
10 lines • 529 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var react_1 = tslib_1.__importStar(require("react"));
var CellMask_1 = tslib_1.__importDefault(require("./CellMask"));
var SelectionMask = react_1.forwardRef(function SelectionMask(props, ref) {
return (react_1.default.createElement(CellMask_1.default, tslib_1.__assign({}, props, { className: "rdg-selected", ref: ref, tabIndex: 0 })));
});
exports.default = SelectionMask;
//# sourceMappingURL=SelectionMask.js.map
;