Skip to content

Instantly share code, notes, and snippets.

@Chryus
Created January 2, 2017 19:16
Show Gist options
  • Save Chryus/ce9eac448f62a038e8f86613dd58ef0e to your computer and use it in GitHub Desktop.
Save Chryus/ce9eac448f62a038e8f86613dd58ef0e to your computer and use it in GitHub Desktop.
React avatar component
function Avatar(props) {
return (
<div>
<ProfilePic imageUrl={props.user.image} />
<ProfileName name={props.user.name} />
<ProfileLink username={props.user.username} />
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment