1.0.0 • Published 4 years ago

sls-react-data-grid v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

Fork react-data-grid@7.0.0-alpha.29

react-data-grid npm-badge bundlesize-badge coverage-badge

Install

npm install react-data-grid

Usage

import DataGrid from 'react-data-grid';

const columns = [{ key: 'id', name: 'ID' }, { key: 'title', name: 'Title' }];
const rows = [{ id: 1, title: 'Title 1' }, ...];
const rowGetter = rowNumber => rows[rowNumber];

const Grid = () => {
  return <DataGrid
    columns={columns}
    rowGetter={rowGetter}
    rowsCount={rows.length}
    minHeight={500} />;
}

Exports

Aside from the grid this package exports:

namesource
RowComparerRowComparer
RowsContainerRowsContainer
RowRow
CellCell
HeaderCellHeaderCell
shapesshapes