观麦新架构组件库,采用lerna分包管理,👉 预览地址
git clone git@github.com:gmfe/gm-pc.git
cd gm-pc
# 安装依赖
yarn
# 各个包的依赖安装
lerna bootstrap
# 项目启动
yarn start
打开浏览器访问 http://localhost:7000
在每个文件夹下面的 stories.tsx
编写示例代码
这里存放和业务强相关的组件
处理多语言的
组件库
列表相关的
键盘操作相关的
🔨 示例
import { Button, Input } from '@gm-pc/react'
const App = () => (
<>
<Button type="primary">点击</Button>
<Input />
</>
);