mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-16 03:18:11 +00:00
509 B
509 B
order, title
| order | title | ||||
|---|---|---|---|---|---|
| 10 |
|
zh-CN
block属性将使按钮适合其父宽度。
en-US
block property will make the button fit to its parent width.
import { Button } from 'antd';
ReactDOM.render(
<div>
<Button type="primary" block>
Primary
</Button>
<Button block>Default</Button>
<Button type="dashed" block>
Dashed
</Button>
<Button type="link" block>
Link
</Button>
</div>,
mountNode,
);