Skip to content

Instantly share code, notes, and snippets.

@pubudu-pagero
Last active April 12, 2020 16:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pubudu-pagero/bcf7314fada80ca2cdd694606a60122c to your computer and use it in GitHub Desktop.
Save pubudu-pagero/bcf7314fada80ca2cdd694606a60122c to your computer and use it in GitHub Desktop.
const ComponentC = React.memo(({ name }) => {
console.log("Component C is rendered :" + name)
return <h1>Hello , {name}</h1>;
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment