import Button from '../../button'; import Notification from '..'; import React from 'react'; import ReactDOM from 'react-dom'; const key = 'updatable'; const openNotification = () => { Notification.open({ key, title: 'Notification Title', content: 'description.', }); setTimeout(() => { Notification.open({ key, title: 'New Title', content: 'New description.', }); }, 1000); }; ReactDOM.render( , document.getElementById('notification-demo-6'), );