Files
moreminimore-vibe/scaffold/src/utils/toast.ts
2025-04-14 15:59:34 -07:00

18 lines
356 B
TypeScript

import { toast } from "sonner";
export const showSuccess = (message: string) => {
toast.success(message);
};
export const showError = (message: string) => {
toast.error(message);
};
export const showLoading = (message: string) => {
return toast.loading(message);
};
export const dismissToast = (toastId: string) => {
toast.dismiss(toastId);
};