Last active
May 17, 2019 04:36
-
-
Save gaperton/d405ac30bf95f06e4d4061f5511634e7 to your computer and use it in GitHub Desktop.
Show user
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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