如何在不使用 JSX 的情况下编写它?
var CommentBox = React.createClass({
render: function() {
return (
<div className="commentBox">
<h1>Comments</h1>
<CommentList />
<CommentForm />
</div>
);
}
});
这来自 react.js 教程:http ://facebook.github.io/react/docs/tutorial.html
我知道我可以做到以下几点:
return (
React.createElement('div', { className: "commentBox" },
React.createElement('h1', {}, "Comments")
)
但这只是增加了一个元素。我怎样才能添加更多彼此相邻。