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

Package detail

react-table-components

votsa56MIT0.0.12

React components for rendering table data

react, table

readme

React table components

React components for creating tables with specific controls

Demo: (https://votsa.github.io/react-table-components/)

Installation

You can install react-table-components with npm:

npm install react-table-components --save

This package has 2 containers which include full functionality of react-table-components.

First one is bootstrap container which requires Bootstrap stylesheets and Font Awesome fonts

<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet" />
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" />

and

import { BootstrapContainer } from 'react-table-components';
import 'react-table-components/styles/styles.css';

Second one is material design container which requires Material Design Lite stylesheets and Material icon font

<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
<link href="https://code.getmdl.io/1.3.0/material.indigo-pink.min.css" rel="stylesheet" />

and

import { MaterialContainer } from 'react-table-components';
import 'react-table-components/styles/styles.css';