Merge pull request #23775 from ProTip/master

react-table: Correct RowInfo documentation and add original property.
This commit is contained in:
Armando Aguirre
2018-03-07 11:11:56 -08:00
committed by GitHub

View File

@@ -610,9 +610,12 @@ export interface RowRenderProps extends Partial<RowInfo> {
}
export interface RowInfo {
/** Original row from your data */
/** Materialized row of data */
row: any;
/** Original row from your data */
original: any;
/** The post-accessed values from the original row */
rowValues: any;