JSFiddle - React, Tailwind, and code Playground
by dkunin
HTML
<script src="http://fb.me/react-with-addons-0.8.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);