Last active
January 3, 2016 16:09
-
-
Save assertchris/8487779 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * @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