-
I've used React Table in the past, and have recently started a new project using V8. All the examples I have seen so far use regular table tags. In the past, I've used the Any guidance would be greatly appreciated, thank you in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
The reason I removed the hook from react-table@7: <div {...cell.getCellProps({ className: "..." })}> react-table@8: <div key={cell.id} className="..." style={{ width: cell.column.getSize() }}> |
Beta Was this translation helpful? Give feedback.
The reason
useFlexLayout
no longer exists is that it's not needed anymore.I removed the hook from
useTable
and updated the root node for cells:react-table@7:
react-table@8: