The official documentation site for uiw
. 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 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.)
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 :
This git repository is a repo built using Lerna. It contains several packages:
Use Gitpod, a free online dev environment for GitHub.
Or clone locally:
$ git clone https://github.com/uiwjs/uiwjs.github.io.git --recurse-submodules
Listening compiled component code.
$ npm install # Install dependencies
$ lerna bootstrap # Install all package dependencies
$ lerna bootstrap --scope @uiw/* # Set scope installation dependencies
To develop, run the self-reloading build:
# Run the app
# Restart the app automatically every time code changes.
# Useful during development.
$ npm run watch:uiw
$ npm run watch:pkg
$ lerna run --scope uiw watch --stream
Folders
├── LICENSE
├── README.md
├── package.json
└── packages
├── uiw # Component library source code
├── react-alert
├── react-tree
├── ...
└── react-affix
Licensed under the MIT License.