react-hooks-helper
react-hooks-helper copied to clipboard
Array objects Support
Does react-hooks-helper support the following structure?
{
"foo": [
{
"a": "",
"b": "",
"c": ""
},
{
"a": "",
"b": "",
"c": ""
}
]
}
Found a solution, use nested like this, (ie. "foo.3.a" or "foo.2.c") :
<FormControl key={index}
placeholder="Acquis d'apprentissage"
name={"foo."+ index +".a"}
value={iteration.a}
onChange={setForm}
/>
Does react-hooks-helper support the following structure? ...
What part of react-hooks-helper?
How can we Add New Array fields through SetForm.