( ) . , , .
this.input , <input>, :
this.input = () => (
<input type="text"
onChange={this.handleChange }
value={this.state.val} />
);
this.input() . .
, (this.input), , , prop ref:
render() {
<input type="text"
onChange={this.handleChange }
value={this.state.val}
ref={input => (this.input = input)}
/>
}
this.input .