Hi guys, one question.
I am using react-router and I have a <Form> with multiple rows. Each row represents a row of the database and I have an input on each of these rows.
Very simplified, it looks like this:
<table>
<tbody>
<td><input type="number" name="tasks[1][order]" /></td>
<td><input type="number" name="tasks[2][order]" /></td>
<td><input type="number" name="tasks[3][order]" /></td>
</tbody>
</table>
how can I access all those inputs names/values in the "action" function? I need to add them to the body of a POST request.
thanks 🙂