UNPKG

cjd-parkball

Version:

> 中后台业务组件库,中后台就像公园,进入需要买门票(登录),所以以 Parkball(公园球) 命名,公园内必定捕获!作为一个组件库,提供使用方法文档,方便开发者的调用

21 lines (17 loc) 433 B
import React from 'react' import { Button } from 'antd' import './index.scss' /** * type: primary|secondary|dashed|danger * ghost: 在outline中这个属性不起作用 * href: string * shape: [circle] * size: large|small|normal * loading: false, */ export default class extends React.PureComponent { static Group = Button.Group render () { return <Button {...this.props}>{this.props.children}</Button> } }