Files
user-front/src/core/components/notifications/PendingNotification.jsx
2023-08-09 13:41:14 +03:30

12 lines
245 B
JavaScript

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