Skip to content

Instantly share code, notes, and snippets.

@Chryus
Created January 2, 2017 19:18
Show Gist options
  • Select an option

  • Save Chryus/6695f94ed3eddf1576c5158410ff3de5 to your computer and use it in GitHub Desktop.

Select an option

Save Chryus/6695f94ed3eddf1576c5158410ff3de5 to your computer and use it in GitHub Desktop.
avatar child components
function ProfilePic(props) {
return (
<img src={props.imageUrl} style={{width:100, height:100}}/>
);
}
function ProfileName(props) {
return (
<div>{props.name}</div>
);
}
function ProfileLink(props) {
return (
<a href={'https://www.github.com/' + props.username}>
{props.username}
</a>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment