tsq-uikit
v1.0.10
Published
[](https://circleci.com/gh/tsq/uikit/tree/develop)
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-uikitby yarn
yarn add tsq-uikitUsage
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";