18 lines
356 B
TypeScript
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);
|
|
};
|