Help with rerender
Hello, everyone!
I'm learning tanstack-table and trying to do table with editable cells.
I want to indicate changes in parent component, so I added state
const [isRecordChanged, setRecordChanged] = useState<boolean>(false)
Added setRecordChanged
to table meta and trying to trigger it on onChange
Now my component rerender when I'm trying to change something first time and drop focus0 Replies