mirror of
https://github.com/wahyd4/ant-design.git
synced 2026-08-13 14:56:27 +10:00
373 B
373 B
order, title
| order | title | ||||
|---|---|---|---|---|---|
| 0 |
|
zh-CN
信息提醒反馈。
en-US
Normal messages as feedbacks.
import { message, Button } from 'antd';
const info = function () {
message.info('This is a normal message');
};
ReactDOM.render(<Button type="primary" onClick={info}>Display normal message</Button>
, mountNode);