Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Kamilnaja/0cd2b3373bdcfa07a1a78cff31617033 to your computer and use it in GitHub Desktop.
Save Kamilnaja/0cd2b3373bdcfa07a1a78cff31617033 to your computer and use it in GitHub Desktop.
<script>
const e = React.createElement;
ReactDOM.render(
e('div', null, 'Hello World'),
document.getElementById('app')
)
</script>
@Kamilnaja
Copy link
Author

ReactDOM.render( React.DOM.h2( { id: "my-heading" }, "Hello World" ), document.getElementById('app') )

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment