react stuff - adding DOM attr to component

by james gotsell

HTML

<script src="https://getfirebug.com/firebug-lite-debug.js"></script>

<body>
  <div id="app">
   
  </div>
 
</body>

Babel + JSX

React.render(
    		React.DOM.h1(
        { 
        id: "my-heading" 
        }, 
        "hello world"
        ),
        document.getElementById("app")
    );