Skip to content

Instantly share code, notes, and snippets.

@sagar-gavhane
Last active May 2, 2020 06:27
Show Gist options
  • Save sagar-gavhane/8449c7e6275f3e6b5c024963a7e2337c to your computer and use it in GitHub Desktop.
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
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