Skip to content

Instantly share code, notes, and snippets.

@coryhouse
Last active March 1, 2016 19:33
Show Gist options
  • Save coryhouse/06835db957f655546c67 to your computer and use it in GitHub Desktop.
Save coryhouse/06835db957f655546c67 to your computer and use it in GitHub Desktop.
import React from ‘react’;
const HelloWorld = ({name}) => (
 <div>{`Hi ${name}`}</div>
);
export default HelloWorld;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment