Gwen
if you're happy and you know it, star this repo
a @colinhacks production
Table of contents
Installation
To install the latest version:
npm install --save gwen
yarn add gwen
TypeScript versions
gwen@0.x is compatible with TypeScript 3.7+.
You must use "strict": true
in your tsconfig.json
! Otherwise you may get unexpected type errors.
Usage
import { Gwen } from 'gwen';
const gwen = new Gwen();
function Component() {
return <p className={gwen.fontSize(14).color('blue').class}>Hello there</p>;
}
Changelog
version | release notes |
---|---|
gwen@1.0 | Initial release |