JSFiddle - React, Tailwind, and code Playground
by jdhines
HTML
<script src="//cdnjs.cloudflare.com/ajax/libs/react/0.10.0/react.min.js"></script>
JavaScript
var Hello = React.createClass({
render: function() {
return React.DOM.div({}, 'Hello ' + this.props.name);
}
});
React.renderComponent(Hello({name: 'World'}), document.body);