Skip to content

Instantly share code, notes, and snippets.

@joelburget
Created March 18, 2014 21:07
Show Gist options
  • Save joelburget/9629645 to your computer and use it in GitHub Desktop.
Save joelburget/9629645 to your computer and use it in GitHub Desktop.
var Button = React.createClass({
render: function() {
return this.transferPropsTo(<div style={{ border: "1px solid gray" }} className="button" />);
}
});
<Button style={{ background-color: "blue" }} className="blue-button" />
->
<div style={{ border; "1px solid gray", background-color: "blue" }} className="button blue-button" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment