JSFiddle - React, Tailwind, and code Playground

by iori horigome

HTML

<div id="content">
</div>

JavaScript

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

React.render(
  <CommentBox />,
  document.getElementById('content')
);
</script>