Functional rendering simply means that you have all of the building blocks to render your own React Table however you'd like.
-
-
- Whether it's
completely custom, or even just
rearranging the order of the table's elements, this is how you can do it.
-
Pagination at the top using partials:
+
Decorating the standard table output
@@ -78,84 +75,7 @@ export default () => {
data={data}
columns={columns}
>
- {(state, {
- Root,
- Table,
- HeaderGroups,
- Headers,
- Rows,
- Footers,
- Pagination,
- NoData,
- Loading
- }, instance) => {
- return (
-
-
-
-
-
-
- )
- }}
-
-
-
-