A type-safe toast notification hook package for React and Next.js projects.
npm install navigateui-toast
import { toast } from "navigateui-toast";
// Show a success toast
toast("Action completed!", {
type: "success",
duration: 3000,
});
// Show an error toast
toast("Something went wrong!", { type: "error" });
// Show an info toast
toast("Check this out!", { type: "info" });