forked from github/plane
10 lines
228 B
TypeScript
10 lines
228 B
TypeScript
import { useContext } from "react";
|
|
import { toastContext } from "@/contexts/toast.context";
|
|
|
|
const useToast = () => {
|
|
const toastContextData = useContext(toastContext);
|
|
return toastContextData;
|
|
};
|
|
|
|
export default useToast;
|