12 lines
272 B
JavaScript
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; |