Last active
June 4, 2018 02:17
-
-
Save diegohaz/86d47e8b9f92a60f655ca3fd0649c751 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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