import './demo3.css'; import Button from '../../button'; import Notification from '..'; import React from 'react'; import ReactDOM from 'react-dom'; const openNotification = type => { Notification.open({ title: 'Notification Title', content: 'This is the content of the notification. This is the content of the notification. This is the content of the notification.', type, }); }; ReactDOM.render(
, document.getElementById('notification-demo-3'), );