标签:
react添加style样式
var style={ border:‘1px solid #000‘, background:‘red‘, width:‘200px‘ }; var Divider=React.createClass({ render:function(){ return ( <div style={style}> <h2>{this.props.children}</h2> </div> ) } }); React.render( <Divider>questions</Divider>, document.body )
标签:
原文地址:http://www.cnblogs.com/wujidns/p/5624212.html