JSFiddle - React, Tailwind, and code Playground

by dav sev

HTML

<script src="//cdnjs.cloudflare.com/ajax/libs/react/0.14.7/react.min.js"></script>
<div id="container"></div>

JavaScript

var HelloWorld = React.createClass({
   render: function(){
     return(
       <div>
        <h1>Hello World</h1>
       </div>
     )
   }
});

var hello = <HelloWorld />
React.render(hello, document.getElementById('container'));