<h1 align="center">mayui(React mobile 组件库)</h1>

<h5 align="center" margin="20px">为什么有了这个组件库？主要是React Moblie库比较少，顺便锻炼自己。</h1>

### 如何使用

#### 使用 npm 或 yarn 安装（推荐）

```bash
# npm
npm install mayui --save

# yarn
yarn add mayui
```
#### 按需加载
使用 [babel-plugin-import](https://www.npmjs.com/package/babel-plugin-import) 

```js
  // .babelrc or babel-loader option
  {
    "plugins": [
      ['import', {
        libraryName: 'mayui',
        style: true,
      }],
    ]
  }
```

```js
import { Button } from 'mayui';
```