react-pivot-table
v1.0.0
Published
Simple pivot table written as React.js component.
Downloads
13
Readme
React Pivot Table
A simple react component that implements a simple pivot.
<PivotTable columns="store"
rows="product"
data={
[{ product: 'A', store: '1'},
{product: 'B', store: '1'},
{product: 'C', store: '1'},
{product: 'D', store: '1'},
{product: 'A', store: '2'},
{product: 'B', store: '2'},
{product: 'C', store: '2'}] Up}/>
Install with npm.
npm install react-pivot-table
Implemented in ES6 and tested with the babel compiler.