新的反应并尝试将我当前的项目从纯JS转换为使用React的项目。
这是我的代码
var DateApp = React.createClass({
//lots of functions inside here such as:
retrieveMatches(){
},
render() {
return (
)
}
}) //closing of create class
React.render(
<DateApp />, document.getElementById('content')
);
我的错误如下:
1)因为代码是>意外标记指向返回块的右括号
2)如果我删除了返回块&gt;它指向<DateApp />, document.getElementById('content')
并说该行开头有语法错误?
无法解决我失踪的问题