Skip to content

Instantly share code, notes, and snippets.

@janmarek
Created May 13, 2022 12:03
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 janmarek/fd92681cd549d9400b60947dcc9f19dc to your computer and use it in GitHub Desktop.
Save janmarek/fd92681cd549d9400b60947dcc9f19dc to your computer and use it in GitHub Desktop.
React playground
<div id="app"></div>
class App extends React.Component {
render() {
return (
<div>Hello React..!</div>
);
}
}
React.render(<App />, document.getElementById('app'));
<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