Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
var Style = React.createClass({
render: function() {
var style = assign({}, this.props);
delete style.children;
return React.createElement(
'div',
{style: style, children: this.props.children}
);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment