Skip to content

Instantly share code, notes, and snippets.

@sebjwallace
Created April 22, 2016 10:40
Show Gist options
  • Save sebjwallace/16cf1f25d343ec3db591895d4460f7b6 to your computer and use it in GitHub Desktop.
Save sebjwallace/16cf1f25d343ec3db591895d4460f7b6 to your computer and use it in GitHub Desktop.
function Hello(name){
return ["div", null, "Hello " + name];
}
ReactDOM.render(
React.createElement.apply(this, Hello('world')),
document.getElementById('container')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment