1.0.8 • Published 6 years ago

@viewstools/tables v1.0.8

Weekly downloads
-
License
MIT
Repository
github
Last release
6 years ago

@viewstools/tables

Tables wrapper around 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.

Use it like:

import { Table, Column } from '@viewstools/tables/dom'

const data = [{
  name: 'Mary',
  location: 'Somewhere',
}, {
  name: 'Bob',
  location: 'Wherever',
}]

<Table from={data}>
  <Column key="name" />
  <Column key="location" />
</Table>

License MIT. (c) 2018 UXtemple Ltd.

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago