Skip to content

Instantly share code, notes, and snippets.

@isacjunior
Created October 29, 2018 04:19
Show Gist options
  • Save isacjunior/220aeece34af3dde64903e662f080b2a to your computer and use it in GitHub Desktop.
Save isacjunior/220aeece34af3dde64903e662f080b2a to your computer and use it in GitHub Desktop.
import React, { memo } from 'react'
const Hello = ({ name }) => <h1>Hello {name}</h1>
const areEqual = (prevProps, nextProps) => prevProps.name === nextProps.name
export default memo(Hello, areEqual)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment