如何在不使用JSX的情況下編寫此代碼?如何在沒有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")
)
但是,這只是增加了一個元素。我怎樣才能添加更多的相鄰。
JSX編譯器似乎過時。使用https://babeljs.io/repl/ – 2016-09-22 19:07:11