I've applied eslint airbnb standard to my code, so now this code:
handleSubmit = (event) => {
event.preventDefault();
this.props.onSearch(this.query.value);
event.target.blur();
}
causes this error:
[eslint] Must use destructuring props assignment
(react/destructuring-assignment)
onSearch
basically a trigger that passes up a value to parent component.
How do I refactor this code to meet the eslint requirements?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…