https://github.com/uptick/react-object-table
React powered table of objects, designed to be editable and fast.
https://github.com/uptick/react-object-table
Last synced: 11 months ago
JSON representation
React powered table of objects, designed to be editable and fast.
- Host: GitHub
- URL: https://github.com/uptick/react-object-table
- Owner: uptick
- License: mit
- Created: 2016-02-16T02:49:01.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T04:07:07.000Z (over 3 years ago)
- Last Synced: 2024-10-29T00:39:28.526Z (over 1 year ago)
- Language: JavaScript
- Homepage: http://uptick.github.io/react-object-table/
- Size: 903 KB
- Stars: 15
- Watchers: 12
- Forks: 3
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# react-object-table
[](http://badge.fury.io/js/react-object-table)

React powered table of objects, designed to be editable and fast.
## Live Demo
Check out the live demo here: http://uptick.github.io/react-object-table/
## Installation
Install the package with npm:
```
npm install react-object-table
```
Then require and use with ES6 imports:
```javascript
import React from 'react'
import ReactDom from 'react-dom'
import ObjectTable from 'react-object-table'
var mount = document.querySelectorAll('div.table-mount');
ReactDom.render(
,
mount[0]
);
```
Optionally, include the built css with an import:
```scss
@import 'node_modules/react-object-table/dist/react-object-table.css';
```
or tag:
```html
```
Full reference documentation coming soon. For now, take a look at the reference on the live demo at
http://uptick.github.io/react-object-table/.