Created
May 8, 2018 18:40
-
-
Save dewski/5e7fd8c6c83b04a6435ccad4c0736d80 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
const Hi = (props) => ( | |
<div> | |
Hi! | |
</div> | |
) | |
class Hi extends React.Component { | |
render() { | |
return ( | |
<div> | |
Hi! | |
</div> | |
) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment