Fixed documentation to match the actual implementation settings. Sorting objects use a desc prop not a asc prop. (#239)

This commit is contained in:
Austin Hunt
2017-05-05 17:22:09 -06:00
committed by Tanner Linsley
parent 9d9b1fdee4
commit 1757b4dd9f
+2 -2
View File
@@ -650,10 +650,10 @@ Here are the props and their corresponding callbacks that control the state of t
pageSize={20} // the number of rows per page to be displayed
sorting={[{
id: 'lastName',
asc: true
desc: true
}, {
id: 'firstName',
asc: true
desc: true
}]} // the sorting model for the table
expandedRows={{
1: true,