import { Toaster } from 'react-hot-toast' import { ErrorToast } from './ErrorToast' import { LoadingToast } from './LoadingToast' import { SuccessToast } from './SuccessToast' export const ToastNotifications = () => ( {(t) => t.type === 'error' ? ( ) : t.type === 'loading' ? ( ) : ( ) } )