handleUpdateRingers(index, event) {
this.setState({
items: update(this.state.items, {0: {ringerNumbers: {$set: event.target.value}}})
}, () => this.updateTotals())
How can I remove that hardcode of 0
in the setState and use the index to drive that?