mirror of
https://github.com/wahyd4/ant-design.git
synced 2026-08-13 14:56:27 +10:00
493 B
493 B
order, title
| order | title | ||||
|---|---|---|---|---|---|
| 2 |
|
zh-CN
自定义时长 10s,默认时长为 1.5s。
en-US
Customize message display duration from default 1.5s to 10s.
import { message, Button } from 'antd';
const success = function () {
message.success('This is a prompt message for success, and it will disappear in 10 seconds', 10);
};
ReactDOM.render(<Button onClick={success}>Customized display duration</Button>
, mountNode);