JSFiddle - React, Tailwind, and code Playground
by spicyj
HTML
<div id="content"></div>
<script src="http://fb.me/react-0.4.1.js"></script>
<script>
var CommentBox = React.createClass({
render: function() {
return (
React.DOM.div({className: "commentBox"},
"Hello, world! I am a CommentBox."
)
);
}
});
React.renderComponent(
CommentBox(),
document.getElementById('content')
);
</script>