An open API service indexing awesome lists of open source software.

https://github.com/votsa/react-table-components

React table components
https://github.com/votsa/react-table-components

bootstrap components material-design react table

Last synced: 4 months ago
JSON representation

React table components

Awesome Lists containing this project

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](https://www.npmjs.com/):

```
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

```html

```

and

```javascript
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
```html

```

and

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