Created
November 3, 2014 15:30
-
-
Save abergs/d9e5380997123ce6c427 to your computer and use it in GitHub Desktop.
This file contains 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
var SomeView = React.createClass({ | |
render: function () { | |
return ( | |
<ColumnLayout expanded={true} somethingElse={this.state.stuff}> | |
<Column text={this.state.text} onClick={this.props.onClick} focus={this.state.isFocus} /> | |
.... | |
</ColumnLayout> | |
); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment