Skip to content

Instantly share code, notes, and snippets.

@deniztetik
Created July 8, 2018 01:41
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 deniztetik/dfb74a1dfdae841abacabc9abb42a6a2 to your computer and use it in GitHub Desktop.
Save deniztetik/dfb74a1dfdae841abacabc9abb42a6a2 to your computer and use it in GitHub Desktop.
// ./src/Hello.js
import React from 'react';
import { withMessageContext } from './MessageContainer';
const Name = (props) => (
<h1>Hello {props.name}!</h1>
);
export default withMessageContext(Name);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment