react-data-grid-igvi
v7.0.0-canary.20.6
Published
Excel-like grid component built with React, with editors, keyboard navigation, copy & paste, and the like
Downloads
6
Maintainers
Readme
react-data-grid
Install
npm install react-data-grid-igvi
Note
This grid traspiled to ES2015
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}
/>
);
}