Last updated 6 years ago
Was this helpful?
是最优秀的 CSS in JS 解决方案之一,在 Dahlia 中使用非常简单。
Dahlia
首先,安装 styled-components
styled-components
yarn add styled-components
快速使用:
import React from 'react' import styled from 'styled-components' const Title = styled.h1` font-size: 1.5em; text-align: center; color: palevioletred; ` const Wrapper = styled.section` padding: 4em; background: papayawhip; ` export const App = () => ( <Wrapper> <Title>Hello World!</Title> </Wrapper> )
对于 VSCode 用户,为了能有良好的开发体验,推荐按相关 VSCode 插件:
为了更好的调试体验,Dahlia 默认集成了 ,集体用法看:。
详细文档:
- 用于语法高亮