Socket
Book a DemoInstallSign in
Socket

@viewstools/tables

Package Overview
Dependencies
Maintainers
3
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@viewstools/tables

Views tables

latest
Source
npmnpm
Version
1.0.8
Version published
Maintainers
3
Created
Source

@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.

FAQs

Package last updated on 27 Aug 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts