Skip to content

Instantly share code, notes, and snippets.

@sebjwallace
Last active April 22, 2016 12:16
Show Gist options
  • Save sebjwallace/3c78220420c1957228eaefc33e342098 to your computer and use it in GitHub Desktop.
Save sebjwallace/3c78220420c1957228eaefc33e342098 to your computer and use it in GitHub Desktop.
function styles(padding){
return {
padding: padding + 'px',
backgroundColor: '#ddd'
}
}
function Hello(name, styles){
return ["div", {style:styles}, "Hello " + name]
}
ReactDOM.render(
React.createElement.apply(
this, Hello("World", styles(10))
),
document.getElementById('container')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment