Skip to content

Instantly share code, notes, and snippets.

@lupomontero
Created April 19, 2018 13:26
Show Gist options
  • Save lupomontero/59c5dba4eada712a12d0cfa94da1f87e to your computer and use it in GitHub Desktop.
Save lupomontero/59c5dba4eada712a12d0cfa94da1f87e to your computer and use it in GitHub Desktop.
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