mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-06 02:15:35 +08:00
ca15cc9b0a
* feat: transfer support status * docs: update demo
524 B
524 B
order | version | title | ||||
---|---|---|---|---|---|---|
10 | 4.19.0 |
|
zh-CN
使用 status
为 Transfer 添加状态,可选 error
或者 warning
。
en-US
Add status to Transfer with status
, which could be error
or warning
.
import React from 'react';
import { Transfer, Space } from 'antd';
const Status = () => (
<Space direction="vertical">
<Transfer status="error" />
<Transfer status="warning" showSearch />
</Space>
);
ReactDOM.render(<Status />, mountNode);