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
- Host: GitHub
- URL: https://github.com/votsa/react-table-components
- Owner: votsa
- License: mit
- Created: 2017-04-04T14:48:11.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-02-14T16:55:26.000Z (over 8 years ago)
- Last Synced: 2025-09-21T16:25:47.480Z (9 months ago)
- Topics: bootstrap, components, material-design, react, table
- Language: JavaScript
- Homepage: https://votsa.github.io/react-table-components/
- Size: 280 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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';
```