Created
May 14, 2017 20:10
-
-
Save Kamilnaja/3c0d8e7083ffdba58350d885e3b30d20 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 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