React stuff adding className htmlFor attr
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",
className: "pretty",
htmlFor: "me",
},
"hello World"
),
document.getElementById("app")
);