From 7fd8fa1dfc4f166f1b96f9080183f0e53fe41256 Mon Sep 17 00:00:00 2001 From: tannerlinsley Date: Tue, 30 Jul 2019 10:21:05 -0600 Subject: [PATCH] docs: adding grouping example --- README.md | 3 ++- package.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 29b578e..2e5a883 100644 --- a/README.md +++ b/README.md @@ -166,10 +166,11 @@ import { - [Basic](https://codesandbox.io/s/github/tannerlinsley/react-table/tree/master/examples/basic) - [Sorting - Client Side](https://codesandbox.io/s/github/tannerlinsley/react-table/tree/master/examples/sorting-client-side) - [Filtering - Client Side](https://codesandbox.io/s/github/tannerlinsley/react-table/tree/master/examples/filtering-client-side) +- [Grouping - Client Side](https://codesandbox.io/s/github/tannerlinsley/react-table/tree/master/examples/grouping-client-side) # Concepts -## React Table is a "headless" library +## React Table is a "headless" UI library React Table is a headless utility, which means out of the box, it doesn't render or supply any actual UI elements. You are in charge of utilizing the state and callbacks of the hooks provided by this library to render your own table markup. [Read this article to understand why React Table is built this way.](https://medium.com/merrickchristensen/headless-user-interface-components-565b0c0f2e18). If you don't want to, then here's a quick rundown anyway: diff --git a/package.json b/package.json index 7086309..05867bb 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,7 @@ "module": "dist/index.es.js", "jsnext:main": "dist/index.es.js", "scripts": { - "commit": "git-cz", + "commit": "git add . && git-cz", "test": "is-ci 'test:ci' 'test:dev'", "test:dev": "jest --watch", "test:ci": "jest",