destruct e.target.value param

JavaScript
handleChange({ target: { value } }) {
  const { inputChange } = this.props;
  inputChange(value);
}
Source

Also in JavaScript: