UNPKG

cjd-parkball

Version:

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

27 lines (20 loc) 553 B
--- category: 2 title: 按钮类型 title_en: Type --- zh-CN 按钮有四种类型:主按钮、次按钮、虚线按钮、危险按钮。主按钮在同一个操作区域最多出现一次。 en-US There are `primary` button, `default` button, `dashed` button and `danger` button in antd. ````jsx import { Button } from 'parkball'; ReactDOM.render( <div> <Button type="primary">Primary</Button> <Button>Default</Button> <Button type="dashed">Dashed</Button> <Button type="danger">Danger</Button> </div>, mountNode); ````