You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
695 B

---
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!');
},
});
};
9 years ago
ReactDOM.render(
<Button type="primary" onClick={openNotification}>
Open the notification box
</Button>,
mountNode,
);
```