8000 GitHub - uiwjs/uiw at v3
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

uiwjs/uiw

Β 
Β 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation


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 create-kkt my-app -e uiw
# or npm
$ npm create kkt my-app -e uiw
# or yarn 
$ yarn create kkt 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.

0