I have this form invoice registration created in reactJs.
The Form should handle input array (marked with red outline). whenever onChange event occured on the input. all the input is receiving the same value. How to prooperly handle this ? I intended to use this input value to generated data like this below :
[
{
invoice_number:102947303364,
invoice_registration_no : 1235
},
{
invoice_number:102947109177,
invoice_registration_no : 6578
},
]
Thanks in advance for the help.
