Skip to content

Instantly share code, notes, and snippets.

@mrjoes
Created December 1, 2013 00:21
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 mrjoes/7726877 to your computer and use it in GitHub Desktop.
Save mrjoes/7726877 to your computer and use it in GitHub Desktop.
var RootPage = React.createClass({
render: function() {
if (this.props.page) {
return this.props.page;
} else {
return <div />
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment