Created
October 29, 2018 04:19
-
-
Save isacjunior/220aeece34af3dde64903e662f080b2a to your computer and use it in GitHub Desktop.
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, { 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