Move ref callbacks into class bound methods

This commit is contained in:
Ken-Håvard Lieng 2017-02-16 22:56:32 +01:00
parent 77b53bfc5e
commit 531792b14a
4 changed files with 28 additions and 22 deletions

View file

@ -10,6 +10,8 @@ export default class Search extends Component {
}
}
inputRef = el => { this.input = el; };
handleSearch = e => this.props.onSearch(e.target.value);
render() {
@ -27,7 +29,7 @@ export default class Search extends Component {
<div className="search-input-wrap">
<i className="icon-search" />
<input
ref={el => { this.input = el; }}
ref={this.inputRef}
className="search-input"
type="text"
onChange={this.handleSearch}