帮忙看看什么错误
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title>react</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.6.1/react.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.13.3/JSXTransformer.js"></script>
</head>
<body>
<div id='container'></div>
<script type="text/jsx">
var TestClickComponent=React.createClass({
render:function(){
return(
<div>
<button>显示|隐藏</button>
<span>测试点击</span>
</div>
);
}
});
var TestClickComponent=React.createClass({
getInitialState:function(){
return{
inputContent:''
}
},
render:function(){
return(
<div>
<input type="text" /><span>{this.state.inputContent}</span>
</div>
);
}
});
React.render(<div><TestClickComponent/></br></br><TestClickComponent/></div>,document.getElementById('container'));
</script>
</body>
</html>