Skip to content

Latest commit

 

History

History
117 lines (91 loc) · 3.02 KB

README.md

File metadata and controls

117 lines (91 loc) · 3.02 KB


uiw

A high quality UI Toolkit, A Component Library for React 16+. 💘

Installation

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.)

Basic Usage

import React from 'react';
import ReactDOM from 'react-dom';
import { Button } from 'uiw';

ReactDOM.render(
  <Button type="primary">Hello</Button>, 
  document.getElementById('app')
);

Documentation

Visit the uiwjs.github.io website for more information.

Or Open in VSCode Preview :

Open in VSCode

Development

Use Gitpod, a free online dev environment for GitHub.

Open in Gitpod

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

License

Licensed under the MIT License.