README
wym UI
An enterprise-class UI design language and React-based implementation.
Features
- Extracted from the interactive language and visual style of enterprise-level medium and backstage products.
- A set of high-quality React components out of the box.
- Written in TypeScript with predictable static types.
- The whole package of development and design resources and tools.
Environment Support
Install
npm install wym-ui --save
Usage
import { DatePicker } from 'wym-ui';
import { Table } from 'wym-ui/pro';
ReactDOM.render(<><DatePicker /><Table /><>, mountNode);
And import style manually:
import 'wym-ui/dist/wym-ui.css'; // or 'wym-ui/dist/wym-ui.less'
import 'wym-ui/dist/wym-ui-pro.css'; // or 'wym-ui/dist/wym-ui-pro.less'
Or import components on demand
TypeScript
Internationalization
See i18n.
Links
Local Development
$ git clone https://github.com/wym/wym-ui.git
$ cd wym-ui
$ npm install
$ npm start
Deployment
$ npm run deploy
publish
$ npm run pub
Open your browser and visit http://127.0.0.1:8001 , see more at https://github.com/ant-design/ant-design/wiki/Development .