Skip to content

Instantly share code, notes, and snippets.

@davidgilbertson
Last active August 18, 2017 10:14
Show Gist options
  • Save davidgilbertson/b118a247865070a419c9736aeb3e0358 to your computer and use it in GitHub Desktop.
Save davidgilbertson/b118a247865070a419c9736aeb3e0358 to your computer and use it in GitHub Desktop.
class Input extends Component {
focus() {
this.el.focus();
}
render() {
return (
<input
ref={el=> { this.el = el; }}
/>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment