https://github.com/viewstools/tables
Views tables
https://github.com/viewstools/tables
Last synced: about 1 year ago
JSON representation
Views tables
- Host: GitHub
- URL: https://github.com/viewstools/tables
- Owner: viewstools
- Created: 2018-08-09T09:25:04.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-27T12:02:46.000Z (almost 8 years ago)
- Last Synced: 2025-02-09T19:34:56.271Z (over 1 year ago)
- Language: JavaScript
- Size: 27.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# @viewstools/tables
Tables wrapper around
[react-virtualized](https://github.com/bvaughn/react-virtualized)
with an API closer to what Views would use internally.
We expose two components `Table` and `Column`. They only work in React DOM for
now. [Contribute here for React Native support](https://github.com/viewstools/morph/issues/132).
Use it like:
```
import { Table, Column } from '@viewstools/tables/dom'
const data = [{
name: 'Mary',
location: 'Somewhere',
}, {
name: 'Bob',
location: 'Wherever',
}]
```
License MIT.
(c) 2018 UXtemple Ltd.