react添加style样式
var style={ border:'1px solid #000', background:'red', '200px' }; var Divider=React.createClass({ render:function(){ return ( <div style={style}> <h2>{this.props.children}</h2> </div> ) } }); React.render( <Divider>questions</Divider>, document.body )