(Choose 1 answer)
Fill the blank to handle form change event in React:
class Form extends React.Component { handleChange() { console.log("changed");}
render() {
return ( <input type="text");..={this.handleChange} />}
} ReactDOM.render(<Form />, document.body);
A. onChange
B. onClick
C. onDoubleClick
D. onSelect
19