Fork me on GitHub

just component! 一切皆组价 在react中styled-component的使用(一)

 
#styled-component基础使用
    ##安装
    npm install --save styled-components
    ##起步
 
下面举个例子
    ```
 import styled from 'styled-components'
 const Title = styled.h1`
font-size: 1.5em;
text-align: center;
color: palevioletred;
`
export {
Wrapper
}
    ```    
然后再其他组件直接当组件引用
 
#Adapting based on props 基于props参数改变

 

#Extending Styles 继承样式

 

 

 

posted @ 2018-11-30 20:19  【godDie】  阅读(269)  评论(0)    收藏  举报