Created
December 5, 2017 17:32
-
-
Save kingisaac95/c1bedbbb7b418f99a13ebdc00d540758 to your computer and use it in GitHub Desktop.
Receive and render
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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