From 9dd03335715f544674af7bb8ee26d15283ff92c5 Mon Sep 17 00:00:00 2001 From: Tanner Linsley Date: Wed, 26 Oct 2016 19:11:48 -0600 Subject: [PATCH] Readme Update --- README.md | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 85f8315..91c6a60 100644 --- a/README.md +++ b/README.md @@ -81,6 +81,14 @@ Every React-Table instance requires you to set the `data` prop. To use client-si These are the default props for the main react component `` ```javascript { + // General + pageSize: 20, + minRows: 0, // Ensure this many rows are always rendered, regardless of rows on page + + // Text + previousText: 'Previous', + nextText: 'Next' + // Classes className: '-striped -highlight', // The most top level className for the component tableClassName: '', // ClassName for the `table` element @@ -99,17 +107,6 @@ These are the default props for the main react component `` thStyle: {}, // style object for the `th` component tdStyle: {}, // style object for the `td` component paginationStyle: {}, // style object for the `paginination` component - // - pageSize: 20, - minRows: 0, // Ensure this many rows are always rendered, regardless of rows on page - // Global Column Defaults - column: { // default properties for every column's model - sortable: true, - show: true - }, - // Text - previousText: 'Previous', - nextText: 'Next' } ```