Thanks in advance.
How do update a react input value to state on button click. I have a list of input and button listed in table row. Need to update the state array of specific item.
Code is below
<TableCard>
<Table dataSource={itemListArray}>
<Column
title="ItemName"
align="left"
render={item => (
<div>
<Input value={item.Name} />
<Icon onClick={???} />
</div>
)}
/>
</Table>
</TableCard>