7.0.0-canary.15.6 • Published 3 years ago

hatrena-reactdatagrid v7.0.0-canary.15.6

Weekly downloads
114
License
MIT
Repository
-
Last release
3 years ago

react-data-grid npm-badge bundlesize-badge ci-badge

Install

npm install react-data-grid

Usage

import DataGrid from 'react-data-grid';
import 'react-data-grid/dist/react-data-grid.css';

const columns = [
  { key: 'id', name: 'ID' },
  { key: 'title', name: 'Title' }
];

const rows = [
  { id: 0, title: 'Example' },
  { id: 1, title: 'Demo' }
];

function App() {
  return (
    <DataGrid
      columns={columns}
      rows={rows}
    />
  );
}

Documentation

1.0.0

3 years ago