I have created a table with UserInformations and in each row I have added 'edit' and 'delete' button. When the Edit button is on Editable mode then it changes to InputText field and I can update the names. In Rows.jsx file I have created a function call 'onSaveStopEditing' and here I have setState the new User Data which is coming from state to variable call 'UsersData'. But now I need to send this state data as 'callBack(data)' function to parents ( which is table_view.jsx) and then update/overwrite it to the original data. I have tried several ways to send the data to parent via callback function but nothing seem to work for me. Also tried to check in Internet but haven't got the answer I am looking for. Any help from you will be much Appreciated ! Thanks in Advance.
My Code link: https://codesandbox.io/s/edit-delete-inreact-dec2019-8hslp
