react stuff - adding DOM attr to component
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")
);