Skip to content

Instantly share code, notes, and snippets.

@itsdouges
Created October 27, 2016 01:11
Show Gist options
  • Save itsdouges/70168509b079a756eb96d7b61ad17be7 to your computer and use it in GitHub Desktop.
Save itsdouges/70168509b079a756eb96d7b61ad17be7 to your computer and use it in GitHub Desktop.
React Ref Callbacks Are Cool
// Make a textbox select itself when it is rendered.
const Textbox = () => (
<div>
<input ref={(c) => c.select()} />
</div>
);
// Neat !
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment