https://github.com/joaocarmo/react-very-simple-data-table
When all you want is a table
https://github.com/joaocarmo/react-very-simple-data-table
data react simple table
Last synced: 10 months ago
JSON representation
When all you want is a table
- Host: GitHub
- URL: https://github.com/joaocarmo/react-very-simple-data-table
- Owner: joaocarmo
- License: mit
- Created: 2019-06-19T09:35:59.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-01-09T18:04:41.000Z (about 2 years ago)
- Last Synced: 2025-02-17T14:49:52.677Z (11 months ago)
- Topics: data, react, simple, table
- Language: JavaScript
- Homepage: https://joaocarmo.com/react-very-simple-data-table/
- Size: 4.38 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# react-very-simple-data-table
[][badge]
When all you want is a table !
## About
A very simple and flexible data table for React.js. If you don't want to think
about rendering or need some smarts, try [react-smart-data-table][rsdt].
**This is in a very experimental stage**
## Installation
```sh
npm install react-very-simple-data-table
# or
yarn add react-very-simple-data-table
```
## Features
- Allows custom rendering
- Renders an horizontal table
- Renders a vertical table
- Easily customizable using CSS by passing a _className_ prop
- Allows custom table elements for:
`table`, `tbody`, `td`, `tfoot`, `th`, `thead`, `tr`
## Usage
Please check the [examples][examples] until the documentation is complete.
## Demos
You can experiment with a demo [here][demo].
## Testing
Run tests using _Jest_:
```sh
yarn test
```
## Forking / Contributing
If you want to fork or contribute, it's easy to test your changes. Just run the
_start_ command to and a development HTTP server will start in your computer,
accessible from your browser at the address `http://localhost:3000/`.
```sh
yarn start
```
[badge]: https://badge.fury.io/js/react-very-simple-data-table
[demo]: https://joaocarmo.com/react-very-simple-data-table/
[examples]: ./examples
[rsdt]: https://github.com/joaocarmo/react-smart-data-table