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.

30 lines
612 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 = function () {
notification.open({
message: 'This is the title',
description: 'This is the content of the notification.This is the content of the notification.This is the content of the notification.',
});
};
9 years ago
ReactDOM.render(
<Button type="primary" onClick={openNotification}>Open the notification box</Button>
, mountNode);
````