react-windy-ui
v0.8.0-alpha.2
Published
A modern web UI framework based on React
Downloads
16
Readme
A UI framework built with Wui sass project and React.
Documentation
For documentation, please refer to this link: http://react-windy-ui.super666.cn/
How to install
You can install by npm or yarn:
npm install react-windy-ui
or
yarn add react-windy-uiCreate a sample project
- create a project 'my-app' by create-react-app tool
yarn create react-app my-app
# or
npx create-react-app my-app- install react-windy-ui
npm install
npm install react-windy-ui- modify the App.js
import React from 'react';
import { Button } from 'react-windy-ui';
import 'react-windy-ui/dist/wui.css'; #import the default theme file
const App = () => {
return <Button type="primary">Hello</Button>
};
export default App;- run this project and there should be a button on the page
