JSFiddle - React, Tailwind, and code Playground

by spicyj

HTML

<script src="http://fb.me/react-js-fiddle-integration.js"></script>

JavaScript 1.7

/** @jsx React.DOM */

	var appCont = React.createClass({
			render : function() {
                // <div>hi</div> or
				return React.DOM.div(null, "hi");
			}
		});
 
React.renderComponent(<appCont />, document.body);