Created
May 13, 2022 12:03
-
-
Save janmarek/fd92681cd549d9400b60947dcc9f19dc to your computer and use it in GitHub Desktop.
React playground
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
<div id="app"></div> |
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
class App extends React.Component { | |
render() { | |
return ( | |
<div>Hello React..!</div> | |
); | |
} | |
} | |
React.render(<App />, 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="//fb.me/react-0.13.3.js"></script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment