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

22 lines
542 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 0
title: 基本
---
2015-07-28 15:40:28 +08:00
最简单的用法4.5 秒后自动关闭。
2015-07-28 15:40:28 +08:00
````jsx
import { Button, notification } from 'antd';
2015-07-28 15:40:28 +08:00
const openNotification = function () {
2015-08-06 15:19:45 +08:00
notification.open({
message: '这是标题',
2016-05-11 09:32:33 +08:00
description: '这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案',
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(
<Button type="primary" onClick={openNotification}>打开通知提醒框</Button>
, mountNode);
2015-08-06 15:19:45 +08:00
````