import React from "react"; import styles from "./index.less"; import { Button, notification } from "antd"; const openNotification = () => { const args = { message: "Notification Title", description: "I will never close automatically. I will be close automatically. I will never close automatically.", duration: 0 }; notification.open(args); }; export default () => (
);