项目作者: pxer
项目描述 :
a another css-in-js lib
高级语言: JavaScript
项目地址: git://github.com/pxer/proplica.git
NOTE: this project is WIP;
Usage
import style from 'proplica';
export const Btn = style`
color: white;
`;
Error
- can’t resolve
px
, em
TODO
style extend
import style from 'proplica';
export const BaseBtn = style`
color: white;
`;
export const PrimaryBtn = BaseBtn.extend`
color: pink;
`;