Skip to content

Instantly share code, notes, and snippets.

@laniehei
Last active July 6, 2018 03:25
Show Gist options
  • Save laniehei/5b6a57a30247a823e8d84063f968bb54 to your computer and use it in GitHub Desktop.
Save laniehei/5b6a57a30247a823e8d84063f968bb54 to your computer and use it in GitHub Desktop.
<script>
const MyFirstComponent = function () {
return React.createElement('div', null,
React.createElement('h1', null, "This is my first component! (>'-')> <('-'<) ^('-')^ v('-')v")
)
}
ReactDOM.render(
React.createElement(MyFirstComponent),
document.getElementById('app')
)
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment