mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
740 B
740 B
order | title | ||||
---|---|---|---|---|---|
1 |
|
zh-CN
包括成功、失败、警告。
en-US
Messages of success, error and warning types.
import { message, Button } from 'antd';
const success = () => {
message.success('This is a message of success');
};
const error = () => {
message.error('This is a message of error');
};
const warning = () => {
message.warning('This is message of warning');
};
ReactDOM.render(
<div>
<Button onClick={success}>Success</Button>
<Button onClick={error}>Error</Button>
<Button onClick={warning}>Warning</Button>
</div>,
mountNode
);