Changed: Tests, aggregation, hooks, columnVisibility, docs

This commit is contained in:
Tanner Linsley
2020-02-14 11:23:05 -07:00
parent 94a9b49187
commit b989a8fa76
83 changed files with 15083 additions and 7991 deletions
+10 -11
View File
@@ -59,17 +59,16 @@ function Table({ columns, data }) {
))}
</thead>
<tbody {...getTableBodyProps()}>
{rows.map(
(row, i) => {
prepareRow(row);
return (
<tr {...row.getRowProps()}>
{row.cells.map(cell => {
return <td {...cell.getCellProps()}>{cell.render('Cell')}</td>
})}
</tr>
)}
)}
{rows.map((row, i) => {
prepareRow(row)
return (
<tr {...row.getRowProps()}>
{row.cells.map(cell => {
return <td {...cell.getCellProps()}>{cell.render('Cell')}</td>
})}
</tr>
)
})}
</tbody>
</table>
)