ZHUI is a Chinese-style front-end development component library developed by the zhui-team team based on JavaScript and TypeScript. ZHUI provides commonly used web components, such as buttons, prompts, breadcrumb navigation, progress bars, etc., each of which has been carefully crafted and is very suitable for the development of national style websites.
Before you can use ZHUI’s components, you need to clone ZHUI locally
$ git clone git@github.com:zhui-team/zhui.git$ cd zhui$ npm install$ npm run ddev or npm run storybook
Then you can introduce the relevant components into your project
import { Button } from 'zhui';ReactDOM.render(<Button />, mountNode);