From cf0f8bb72927fc3414f122a5db5875dee9a6f8a0 Mon Sep 17 00:00:00 2001 From: Amir Shrestha Date: Wed, 13 Dec 2017 04:39:23 +0545 Subject: [PATCH] Update README.md (#584) * Update README.md Missing " on Features list, Extra comma removed * Update README.md Added space for component uniformity. --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 93ce030..2a422e7 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ - Pivoting & Aggregation - Minimal design & easily themeable - Fully controllable via optional props and callbacks -- "Why I wrote React Table and the problems it has solved for Nozzle.io by Tanner Linsley +- "Why I wrote React Table and the problems it has solved for Nozzle.io" by Tanner Linsley ## [Demos and examples](http://react-table.js.org/#/story/simple-table) @@ -343,7 +343,7 @@ Or just define them as props ``` ## Columns -`` requires a `columns` prop, which is an array of objects containing the following properties +`` requires a `columns` prop, which is an array of objects containing the following properties ```javascript [{ @@ -358,7 +358,7 @@ Or just define them as props Aggregated: JSX | String | Function // Used to render aggregated cells. Defaults to a comma separated list of values. Pivot: JSX | String | Function | cellInfo => ( // Used to render a pivoted cell - // By default, will utilize the the PivotValue and Expander components at run time + // By default, will utilize the the PivotValue and Expander components at run time ), PivotValue: JSX | String | Function // Used to render the value inside of a Pivot cell @@ -480,7 +480,7 @@ If your data has a field/key with a dot (`.`) you will need to supply a custom a ## Column Header Groups -To group columns with another header column, just nest your columns in a header column. Header columns utilize the same header properties as regular columns. +To group columns with another header column, just nest your columns in a header column. Header columns utilize the same header properties as regular columns. ```javascript const columns = [{ Header: 'Favorites', @@ -930,7 +930,7 @@ If you would like to help develop a suggested feature follow these steps: - 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`, +- View changes as you edit `docs/src` - Submit PR for review #### Scripts