fixed-react-data-grid-custom
Version:
Excel-like grid component built with React, with editors, keyboard navigation, copy & paste, and the like
18 lines (16 loc) • 669 B
JavaScript
import Grid from './ReactDataGrid';
import RowComparer from 'common/utils/RowComparer';
import Cell from './Cell';
import Row from './Row';
import EmptyChildRow from './EmptyChildRow';
module.exports = Grid;
module.exports.Row = Row;
module.exports.Cell = Cell;
module.exports.HeaderCell = require('./HeaderCell');
module.exports.RowComparer = RowComparer;
module.exports.EmptyChildRow = EmptyChildRow;
module.exports.editors = require('common/editors');
module.exports.formatters = require('./formatters');
module.exports.shapes = require('common/prop-shapes');
module.exports._constants = require('common/constants');
module.exports._helpers = require('./helpers');