react stuff adding styling to compoents

by james gotsell

HTML

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

Babel + JSX

React.render(
    		React.DOM.h1(
        { 
        
   			style: {
        	background: "blue",
          color: "white",
          fontFamily: "Verdana"
        }
        }, 
         "hello World"
        ),
        document.getElementById("app")
    );