项目作者: pxer

项目描述 :
a another css-in-js lib
高级语言: JavaScript
项目地址: git://github.com/pxer/proplica.git
创建时间: 2017-07-11T05:58:16Z
项目社区:https://github.com/pxer/proplica

开源协议:Apache License 2.0

下载


NOTE: this project is WIP;

Usage

  1. import style from 'proplica';
  2. export const Btn = style`
  3. color: white;
  4. `;

Error

  1. can’t resolve px, em

TODO

  1. style extend

    1. import style from 'proplica';
    2. export const BaseBtn = style`
    3. color: white;
    4. `;
    5. export const PrimaryBtn = BaseBtn.extend`
    6. color: pink;
    7. `;