Skip to content

Instantly share code, notes, and snippets.

@dewski
Created May 8, 2018 18:40
Show Gist options
  • Save dewski/5e7fd8c6c83b04a6435ccad4c0736d80 to your computer and use it in GitHub Desktop.
Save dewski/5e7fd8c6c83b04a6435ccad4c0736d80 to your computer and use it in GitHub Desktop.
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