react stuff - hello world

by james gotsell

HTML

<body>
  <div id="app">
   
  </div>
  <script>
  	React.render(
    		React.DOM.h1(null, "hello world"),
        document.getElementById("app")
    );
  </script>
</body>