import Button from '../../button'; import Notification from '..'; import NumberPicker from '../../number-picker'; import React from 'react'; import ReactDOM from 'react-dom'; let duration = 4500; const openNotification = () => { const args = { title: 'Notification Title', content: 'I will never close automatically. I will be close automatically. I will never close automatically.', duration, }; Notification.open(args); }; ReactDOM.render(
(duration = v || 0)} />
, document.getElementById('notification-demo-2'), );