I am trying to implement an editable data grid using react-table. The code looks something like below:
<ReactTable
data={data}
columns={columns}
/>
The problem I am facing is whenever a cell value in a specific row is updated the entire visible page is re-rendered.
Here is forked sandbox from the creator of the library that illustrates the problem.
I am thinking if react-table re-renders the entire page anytime there is an update in a single cell, then it is rather inefficient. Or I am not sure if I am missing something.
Any help us much appreciated. Thanks in advance!