mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-02 15:27:18 +00:00
381 B
381 B
order, title
| order | title | ||||
|---|---|---|---|---|---|
| 0 |
|
zh-CN
信息提醒反馈。
en-US
Normal message for information.
import { message, Button } from 'antd';
const info = () => {
message.info('This is a normal message');
};
ReactDOM.render(
<Button type="primary" onClick={info}>
Display normal message
</Button>,
mountNode,
);