Created
April 19, 2018 13:33
-
-
Save lupomontero/9f1046590b4db36b2d732f2c2e29c2b5 to your computer and use it in GitHub Desktop.
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
import React from 'react'; | |
export default ({ user = {} }) => ( | |
<div> | |
<h2>{user.name}</h2> | |
<p> | |
<a href={`mailto:${user.email}`}> | |
{user.email} | |
</a> | |
</p> | |
</div> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment