Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

react-pivot-table

petermoresi39MIT1.0.0

Simple pivot table written as React.js component.

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.