import React from 'react'; import type { ToastContainerProps } from 'react-toast-notifications'; const ToastContainer: React.FC = ({ hasToasts, ...props }) => { return (
); }; export default ToastContainer;