Created
October 29, 2018 04:03
-
-
Save isacjunior/44a216f94eec1333fb2804402317c920 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> | |
export default memo(Hello) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment