ant-design/components/notification/demo/basic.md

34 lines
682 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 0
title:
2016-08-17 11:07:02 +08:00
zh-CN: 基本
en-US: Basic
2016-03-31 09:40:55 +08:00
---
2015-07-28 15:40:28 +08:00
2016-08-17 11:07:02 +08:00
## zh-CN
最简单的用法4.5 秒后自动关闭。
2015-07-28 15:40:28 +08:00
2016-08-17 11:07:02 +08:00
## en-US
The simplest usage that close the notification box after 4.5s.
2017-02-13 10:55:53 +08:00
````jsx
import { Button, notification } from 'antd';
2015-07-28 15:40:28 +08:00
2016-12-14 17:57:15 +08:00
const openNotification = () => {
2015-08-06 15:19:45 +08:00
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!');
},
2015-08-06 15:19:45 +08:00
});
2015-07-30 21:04:52 +08:00
};
2015-07-28 15:40:28 +08:00
2015-10-20 16:47:55 +08:00
ReactDOM.render(
2018-06-27 15:55:04 +08:00
<Button type="primary" onClick={openNotification}>Open the notification box</Button>,
2018-11-28 15:00:03 +08:00
mountNode
);
2015-08-06 15:19:45 +08:00
````