Skip to content

Instantly share code, notes, and snippets.

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