JSFiddle - React, Tailwind, and code Playground

by james gotsell

HTML

<script src="https://getfirebug.com/firebug-lite-debug.js"></script>
<body>
  <div id="app"></div>
</body>

Babel + JSX

var CommentBox = React.createClass({
  render: function() {
    return (
      <div className="commentBox">
        Hello, world! I am a CommentBox.
      </div>
    );
  }
});
ReactDOM.render(
  <CommentBox />,
  document.getElementById('app')
);