Skip to content

Instantly share code, notes, and snippets.

@Gogetter
Created August 8, 2020 12:50
Show Gist options
  • Save Gogetter/907ad95296de31c415990ddaf89fb47b to your computer and use it in GitHub Desktop.
Save Gogetter/907ad95296de31c415990ddaf89fb47b to your computer and use it in GitHub Desktop.
profile js file for reactjs-soujourn blog post
import React from "react"
import Avatar from "../avatar/Avatar"
function Profile(props) {
return (
<div className="container">
<Avatar
avatarData = {{imageUrl: props.avatar_url,
imageAlt: props.login}}
avatarDetailData ={{joinedDate: props.created_at,
pageUrl: props.html_url,
name: props.name}}
/>
</div>
);
}
export default Profile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment