Skip to content

Instantly share code, notes, and snippets.

@neoney
Forked from petehunt/gist:63096ce46439a686548e
Last active August 29, 2015 14:12
Show Gist options
  • Select an option

  • Save neoney/a7827eec65c5ffad1df3 to your computer and use it in GitHub Desktop.

Select an option

Save neoney/a7827eec65c5ffad1df3 to your computer and use it in GitHub Desktop.
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