Last active
May 2, 2020 06:27
-
-
Save sagar-gavhane/8449c7e6275f3e6b5c024963a7e2337c to your computer and use it in GitHub Desktop.
#1 Avoid passing unnecessary props to children components: https://medium.com/@sgavhane70/react-performance-optimization-7535564c7bec
This file contains 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' | |
import { render } from 'react-dom' | |
function Avatar(props) { | |
return ( | |
<div className="avatar-wrapper"> | |
<img className="avatar-img" alt="avatar" src={props.user.image} /> | |
<div className="avatar-name">{props.user.name}</div> | |
</div> | |
) | |
} | |
const user = { | |
id: 1, | |
name: 'Leanne Graham', | |
image: 'https://i.picsum.photos/id/237/200/300.jpg', | |
username: 'Bret', | |
email: '[email protected]', | |
address: { | |
street: 'Kulas Light', | |
city: 'Gwenborough', | |
zipcode: '92998-3874', | |
}, | |
} | |
render(<Avatar user={user} />, document.getElementById('root')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment