Files
expert-front/src/core/components/notifications/PendingNotification.jsx

14 lines
402 B
JavaScript

import {toast} from "react-toastify";
const PendingNotification = (pushToastList, notificationType, t) => {
const toastId = toast(t("notifications.pending"), {
containerId: 'validation',
autoClose: false,
closeButton: false,
closeOnClick: false,
draggable: false,
});
pushToastList(notificationType, toastId);
};
export default PendingNotification;