guild_front/src/hooks/useNotification.js

16 lines
425 B
JavaScript
Raw Normal View History

2023-07-14 03:03:33 +03:00
import { useDispatch } from "react-redux";
import { setNotification, closeNotification } from "../redux/outstaffingSlice";
export const useNotification = () => {
const dispatch = useDispatch();
const showNotification = (notification) => {
dispatch(setNotification(notification))
setTimeout(() => {
dispatch(closeNotification())
}, 2500)
}
return { showNotification }
};