Open dtaub opened 7 years ago
Should ...components be on the bottom?
...components
const tableComponents = { ...components, body: { wrapper: Virtualized.BodyWrapper, row: dnd.draggableRow(Virtualized.BodyRow) } };
Mainly I just want to override shouldComponentUpdate(). Is there any easier way to do that?
shouldComponentUpdate()
The order could be changed, yeah. The potential problem is that if you override either wrapper or row, then it may break functionality.
wrapper
row
Should
...components
be on the bottom?Mainly I just want to override
shouldComponentUpdate()
. Is there any easier way to do that?