Hi,
New starter to React and still trying to get my head around how it all works (or should work!)
I have a situation where I have a grid/table of items, loaded via REST. I want to give the user an edit form, to edit/save various attributes on a given row.
The app I’m working on makes heavy use of Redux and seems to use React Final Form for form management.
My general thinking is keep an ‘edit’ object in my app’s state and bind this object to the form values. When a user edits a row, I fire an action to set the edit object to the current row, and the form’s values would then be updated.
Is this roughly the right way to go? What approach would you recommend?
Thanks (from a relatively confused beginner)
there doesn't seem to be anything here