how to store multiple date from date form field in reactjs

JavaScript
handleChange = (e, date) => {
    const value = moment(date);
    const chargeId = e.target.name;
    console.log(chargeId);
    this.setState({[chargeId]: value}, () => console.log(this.state[chargeId]));
}

Source

Also in JavaScript: