Files
Frontend/src/core/components/notifications/PendingNotification.jsx
2023-10-02 10:23:56 +03:30

12 lines
272 B
JavaScript

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