useToast
This hook allows you to popup notifications on the bottom right corner of the screen (also known as toasts)
Installation
Examples
let toast = useToast(); toast.success({icon: "path/to/your/image", content: "Toast with custom icon"});
let toast = useToast(); toast.custom({content: "Custom Toast message"});
let toast = useToast(); toast.custom({ content: () =>
You custom toast content);
Last updated