Reaching Into A Component
Child Component
class Input extends Component {
focus() {
this.el.focus();
}
render() {
return (
<input
ref={el=> { this.el = el; }}
/>
);
}
}Parent Component
Reference:
Last updated