Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

Delete button Code

handleDelete = counterId => {


const counters = this.state.counters.filter(c => c.id !== counterId);
this.setState({ counters });
};

You might also like