Skip to content

Instantly share code, notes, and snippets.

@hartzis
Created February 21, 2016 21:59
Show Gist options
  • Save hartzis/b6e9530434885dd8ec6e to your computer and use it in GitHub Desktop.
Save hartzis/b6e9530434885dd8ec6e to your computer and use it in GitHub Desktop.
export default function Scientist({dob, fullname, imageSrc}) {
return (
<div>
<h3>{fullname}</h3>
<h5>{dob}</h5>
<img src={imageSrc} />
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment