JSFiddle - React, Tailwind, and code Playground

by drulia

HTML

<script src="http://fb.me/react-with-addons-0.10.0.js"></script>

JavaScript

var Hello = React.createClass({
    render: function() {
        return React.DOM.div({}, 'Hello ' + this.props.name);
    }
});
 
React.renderComponent(Hello({name: 'World'}), document.body);