我有commentBox.jsx文件,包含以下代码:
var CommentBox = React.createClass( {
render: function () {
return (
Comments
);
}
});
在index.html中,我想渲染此组件:
但我收到错误:"CommentBox未定义"; 为什么这不起作用?如果我将所有代码放在一个文件(commentBox.js) - 它将工作.