mirror of
https://github.com/makeplane/plane.git
synced 2025-12-17 12:27:50 +01:00
10 lines
226 B
TypeScript
10 lines
226 B
TypeScript
|
|
import { useContext } from "react";
|
||
|
|
import { toastContext } from "contexts/toast.context";
|
||
|
|
|
||
|
|
const useToast = () => {
|
||
|
|
const toastContextData = useContext(toastContext);
|
||
|
|
return toastContextData;
|
||
|
|
};
|
||
|
|
|
||
|
|
export default useToast;
|