React Hello World (JS shorthand)

Starting point for creating JSFiddles with React. This uses React with Addons.

by justindeal

HTML

<script src="http://fb.me/JSXTransformer-0.12.1.js"></script>
<script src="http://fb.me/react-with-addons-0.12.1.js"></script>
<script src="http://facebook.github.io/react/js/jsfiddle-integration.js"></script>

JavaScript 1.7

React.render(
    React.createElement('div', {}, 'Hello, world!'), 
    document.body
);