Skip to content

Instantly share code, notes, and snippets.

@gaperton
Last active May 17, 2019 04:36
Show Gist options
  • Save gaperton/d405ac30bf95f06e4d4061f5511634e7 to your computer and use it in GitHub Desktop.
Save gaperton/d405ac30bf95f06e4d4061f5511634e7 to your computer and use it in GitHub Desktop.
Show user
const userToString = x => x.name + ' <' + x.email + '>';
const PickUser = ({ user }) => (
<div>
  <input value={userToString(user)}/>
</div>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment