Skip to content

Instantly share code, notes, and snippets.

@abergs
Created November 3, 2014 15:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abergs/d9e5380997123ce6c427 to your computer and use it in GitHub Desktop.
Save abergs/d9e5380997123ce6c427 to your computer and use it in GitHub Desktop.
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