Skip to content

Instantly share code, notes, and snippets.

@isacjunior
Created October 29, 2018 04:03
Show Gist options
  • Save isacjunior/44a216f94eec1333fb2804402317c920 to your computer and use it in GitHub Desktop.
Save isacjunior/44a216f94eec1333fb2804402317c920 to your computer and use it in GitHub Desktop.
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