Skip to content

Instantly share code, notes, and snippets.

@diegohaz
Last active June 4, 2018 02:17
Show Gist options
  • Save diegohaz/86d47e8b9f92a60f655ca3fd0649c751 to your computer and use it in GitHub Desktop.
Save diegohaz/86d47e8b9f92a60f655ca3fd0649c751 to your computer and use it in GitHub Desktop.
const Avatar = ({ profile, ...props }) => (
<img
className="avatar"
src={profile.photoSrc}
alt={profile.photoAlt}
{...props}
/>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment