Skip to content

Instantly share code, notes, and snippets.

@assertchris
Last active January 3, 2016 16:09
Show Gist options
  • Select an option

  • Save assertchris/8487779 to your computer and use it in GitHub Desktop.

Select an option

Save assertchris/8487779 to your computer and use it in GitHub Desktop.
/**
* @jsx React.DOM
*/
define(["react"], function(React) {
return React.createClass({
"render" : function() {
return <div className={(this.props.className || "") + " container"}>{this.props.children}</div>;
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment