ant-design/components/notification/demo/basic.md
2019-05-07 14:57:32 +08:00

37 lines
695 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
order: 0
title:
zh-CN: 基本
en-US: Basic
---
## zh-CN
最简单的用法4.5 秒后自动关闭。
## en-US
The simplest usage that close the notification box after 4.5s.
```jsx
import { Button, notification } from 'antd';
const openNotification = () => {
notification.open({
message: 'Notification Title',
description:
'This is the content of the notification. This is the content of the notification. This is the content of the notification.',
onClick: () => {
console.log('Notification Clicked!');
},
});
};
ReactDOM.render(
<Button type="primary" onClick={openNotification}>
Open the notification box
</Button>,
mountNode,
);
```