import React from "react"; import styles from "./index.less"; import { Button, notification } from "antd"; const key = "updatable"; const openNotification = () => { notification.open({ key, message: "Notification Title", description: "description." }); setTimeout(() => { notification.open({ key, message: "New Title", description: "New description." }); }, 1000); }; export default () => (