Last active
March 1, 2016 19:33
-
-
Save coryhouse/06835db957f655546c67 to your computer and use it in GitHub Desktop.
This file contains 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 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