Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Kamilnaja/3c0d8e7083ffdba58350d885e3b30d20 to your computer and use it in GitHub Desktop.
Save Kamilnaja/3c0d8e7083ffdba58350d885e3b30d20 to your computer and use it in GitHub Desktop.
var Component = createReactClass({
render: function () {
return React.DOM.span(null, "i'm so awesome")
}
});
var ComponentFactory = React.createFactory(Component);
ReactDOM.render(
ComponentFactory(),
document.getElementById("app")
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment