码迷,mamicode.com
首页 > 其他好文 > 详细

react 添加样式

时间:2016-06-28 18:35:42      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:

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
        )

 

react 添加样式

标签:

原文地址:http://www.cnblogs.com/wujidns/p/5624212.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!