Last active
May 21, 2017 10:39
-
-
Save Kamilnaja/bef3c1d916cea8c9ca515dda4ac584fa 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 custom"); | |
} | |
}); | |
ReactDOM.render( | |
React.createElement(Component), | |
document.getElementById("app") | |
) |
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
<script src="node_modules/create-react-class/create-react-class.js"></script> | |
<script> | |
var MyComponent = createReactClass({ | |
render: function () { | |
return React.DOM.span(null, "i'm so awesome") | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment