Skip to content

Instantly share code, notes, and snippets.

@kingisaac95
Created December 5, 2017 17:32
Show Gist options
  • Save kingisaac95/c1bedbbb7b418f99a13ebdc00d540758 to your computer and use it in GitHub Desktop.
Save kingisaac95/c1bedbbb7b418f99a13ebdc00d540758 to your computer and use it in GitHub Desktop.
Receive and render
import React from 'react';
const Name = ({ data: { bio, avatar, handleClick } }) => {
return (
<div>
<button onClick={handleClick}>Click Me</button>
<h4>About: {bio}</h4>
<img src={avatar} alt="avatar"/>
</div>
);
};
export default Name;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment