极客react
将ui组织成组件树的形式
class CommentBox extends Component{
render(){
return (
<div className = 'comment-box'>
<h1>Comments</h1>
<CommentList />
<CommentList />
</div>
)
}
}