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