Created
April 19, 2018 13:26
-
-
Save lupomontero/59c5dba4eada712a12d0cfa94da1f87e 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 props => ( | |
<div> | |
<h2>{props.user.name}</h2> | |
<p> | |
<a href={`mailto:${props.user.email}`}> | |
{props.user.email} | |
</a> | |
</p> | |
</div> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment