Skip to content

Instantly share code, notes, and snippets.

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