支持styled-components的插件
安装
yarn add award-plugin-styled-components
使用
award.config.js 的配置
export default {
plugins: ['award-plugin-styled-components'],
};
styled-components
功能
即可使用import { start } from 'award';
import styled from 'styled-components';
const Main = styled.h1`
color: red;
`;
start(<Main>hello styled-components</Main>);
更新日志
0.0.1
- 发布可使用的稳定版本
版本依赖说明
award-plugin-styled-components版本 | award版本 |
---|---|
0.0.1 | >= 0.0.10 |