1.0.10 • Published 5 years ago
tsq-uikit
Licence
ISC
Version
1.0.10
Deps
0
Size
3 kB
Vulns
0
Weekly
0
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";