import React from "react"; import styles from "./index.less"; import { Button, notification } from "antd"; const close = () => { console.log( "Notification was closed. Either the close button was clicked or duration time elapsed." ); }; const openNotification = () => { const key = `open${Date.now()}`; const btn = ( ); notification.open({ message: "Notification Title", description: 'A function will be be called after the notification is closed (automatically after the "duration" time of manually).', btn, key, onClose: close }); }; export default () => (