blob: ac6d47abd5b82fcc6bd2cfa2cd1e7f2c34e87919 [file] [log] [blame]
var CommentBox = React.createClass({
render: function() {
return (
<div className="commentBox">
<a/>
<h1>Comments</h1>
<CommentList />
<CommentForm />
</div>
);
}
});