Go to file
2019-02-18 10:13:41 -07:00
.github/ISSUE_TEMPLATE Update bug_report.md 2019-02-01 09:01:33 -07:00
archives/v6-examples Unzip old react-table examples in archives 2019-02-11 13:14:36 -07:00
dist Rename hook files 2019-02-11 09:33:34 -07:00
media Init v7 src 2019-01-31 12:54:56 -07:00
src Rename hook files 2019-02-11 09:33:34 -07:00
www Create _redirects 2019-02-11 13:19:27 -07:00
.babelrc Rename hook files 2019-02-11 09:33:34 -07:00
.eslintrc Rename hook files 2019-02-11 09:33:34 -07:00
.gitattributes Fixed text mismatch when doing SSR (#957) 2018-05-24 16:27:57 -06:00
.gitignore Update .gitignore 2019-01-28 13:47:31 -07:00
.travis.yml Use Node 6 in Travis 2016-10-24 09:02:19 -06:00
CHANGELOG.md v6.8.6 2018-05-24 10:24:29 -06:00
LICENSE Revert "Init" 2017-05-11 19:03:31 -06:00
package-lock.json Adding IDs for select table, fixing backwards compatibility on floating left checkbox (#1208) 2019-01-31 10:06:47 -07:00
package.json v7.0.0-alpha.2 2019-02-06 16:23:02 -07:00
README.md Update README.md 2019-02-18 10:13:41 -07:00
rollup.config.js Rename hook files 2019-02-11 09:33:34 -07:00
yarn.lock Rename hook files 2019-02-11 09:33:34 -07:00

React Table

Hooks for building lightweight, fast and extendable datagrids for React

Join the community on Spectrum

⚠️ Version 7

This documentation is for Version 7, which is under active development and currently in an alpha state.

Version 6

Looking for v6 information?

Features

Versions

Sponsors

React Table v7 is mostly planned and I (@tannerlinsley) am looking for Patreon support to make it a reality. It will require a decent time commitment on my part to not only implement it, but also help people migrate and continue to maintain it. If you would like to contribute to my Patreon goal for v7 and beyond, visit my Patreon and help me out!.

Table of Contents

Installation

  1. Install React Table as a dependency
# Yarn
$ yarn add react-table

# NPM
$ npm install react-table
  1. Import the react-table module
import { useReactTable } from "react-table";

Examples

React Table v7 Sandbox

Documentation

Documentation for v7 is coming soon. If you're looking for the v6 documentation, click here

Contributing

To suggest a feature, create an issue if it does not already exist. If you would like to help develop a suggested feature follow these steps:

  • Fork this repo
  • Install dependencies with $ yarn
  • Auto-build files as you edit with $ yarn run watch
  • Implement your changes to files in the src/ directory
  • Run the React Story locally with $ yarn run docs
  • View changes as you edit docs/src
  • Submit PR for review

Package Utilities

  • $ yarn run watch Watches files and builds via babel
  • $ yarn run docs Runs the storybook server
  • $ yarn run test Runs the test suite