count: 1,
form: [{ cost: '', amount: '1', product: '', key: 1 }]
}
Метод:
handleCostChange(costValue) {
this.setState({
form: [{
cost: this.state.form.cost,
amount: amountValue,
product: '',
key: this.state.form.key
}]
})
}
Передавать в setState только то, что нужно изменить
Обсуждают сегодня