A high quality UI Toolkit, A Component Library for React 16+. 💘
npm install uiw --save
You can use kkt
to quickly create a react + uiw project.
npx kkt create my-app -e uiw
You can use the uiw v1.x
version. Please see here for instructions. (npx comes with npm 5.2+ and higher.)
import React from 'react';
import ReactDOM from 'react-dom';
import { Button } from 'uiw';
ReactDOM.render(
<Button type="primary">Hello</Button>,
document.getElementById('app')
);
Visit the uiwjs.github.io website for more information.
Or Open in VSCode Preview :
Use Gitpod, a free online dev environment for GitHub.
Or clone locally:
$ git clone https://github.com/uiwjs/uiw.git
$ cd uiw
$ npm install # or yarn install
To develop, run the self-reloading build:
$ npm run watch
$ npm run build
$ npm run test
Folders
├── LICENSE
├── README.md
├── dist
├── lib
├── package-lock.json
├── package.json
├── src # Component library source code
├── test
├── tsconfig.json
└── typings
Licensed under the MIT License.