jsx的标准风格是什么?特别是当HTML与js交织在一起时。在正确的位置返回后括号是?任何人都知道任何优秀的格式化程序不会搞砸一切吗?React JSX风格指南
render: function(){
return (
<li>
<input id={this.props.id} type="checkbox" />
<label htmlFor={this.props.id}>{this.props.tag}</label>
</li>
);
}