UNPKG

react-toastly

Version:

A beautiful React toast notification library with animations, gradients, sounds, and premium features for free.

11 lines (9 loc) 281 B
import { useContext } from "react"; import { ToastlyContext } from "./ToastlyProvider"; export function useToastly() { const context = useContext(ToastlyContext); if (!context) { throw new Error("useToastly must be used within a ToastlyProvider"); } return context; }