tsq-uikit
v1.0.10
Published
[![CircleCI](https://circleci.com/gh/tsq/uikit/tree/develop.svg?style=shield&circle-token=0a521632a6ec2c6bf503cd44b3c6042aeb401e4d)](https://circleci.com/gh/tsq/uikit/tree/develop)
Downloads
1
Readme
UIKIT
A React UI library.
Features
- Written in Typescript with predictable static types
- No third dependencies, so the size is very small
<100KB
- Very friendly for learning React.js and Typescirpt
Install
by npm
npm install tsq-uikit
by yarn
yarn add tsq-uikit
Usage
import React from "react";
import { Button } from "tsq-uikit";
function Demo() {
return <Button>Default Button</Button>;
}
export default Demo;
And import css manually, for example in your index.jsx
or index.tsx
:
import "tsq-uikit/dist/index.css";