Skip to content

Instantly share code, notes, and snippets.

@lupomontero
Created April 19, 2018 13:36
Show Gist options
  • Save lupomontero/5cb33f84abe69398999aa4ff502c1187 to your computer and use it in GitHub Desktop.
Save lupomontero/5cb33f84abe69398999aa4ff502c1187 to your computer and use it in GitHub Desktop.
import React from 'react';
import PropTypes from 'prop-types';
const Profile = ({ user = {} }) => (
<div>
<h2>{user.name}</h2>
<p>
<a href={`mailto:${user.email}`}>
{user.email}
</a>
</p>
</div>
);
Profile.propTypes = {
user: PropTypes.object.isRequired,
};
export default Profile;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment