Skip to content

Instantly share code, notes, and snippets.

@diegohaz
Last active July 24, 2019 12:50
Show Gist options
  • Save diegohaz/057e640f1a77f4646e865b55f95c5043 to your computer and use it in GitHub Desktop.
Save diegohaz/057e640f1a77f4646e865b55f95c5043 to your computer and use it in GitHub Desktop.
const Avatar = ({ profile, ...props }) => (
<img
className="avatar"
src={profile && profile.photoUrl}
alt={profile && profile.photoAlt}
{...props}
/>
);
Avatar.propTypes = {
profile: PropTypes.shape({
photoUrl: PropTypes.string.isRequired,
photoAlt: PropTypes.string.isRequired
}).isRequired
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment