Get column value to another column in react-table

1.1k Views Asked by At

What I am trying to do is to show the toggle value in another column.

enter image description here

I have this column value and data.

enter image description here

Since, accessor cant be duplicate. Is there another way to show the Toggle value in the Status column?

The Toggle data is updated when toggled, so I just need a way to show it. Thank you.

1

There are 1 best solutions below

0
On
Cell: (row) => row.row.original.toggle.toString()

I only this.