26 lines
493 B
TypeScript
26 lines
493 B
TypeScript
"use client"
|
|
|
|
import { toaster } from "../components/ui/toaster"
|
|
|
|
const useCustomToast = () => {
|
|
const showSuccessToast = (description: string) => {
|
|
toaster.create({
|
|
title: "Success!",
|
|
description,
|
|
type: "success",
|
|
})
|
|
}
|
|
|
|
const showErrorToast = (description: string) => {
|
|
toaster.create({
|
|
title: "Something went wrong!",
|
|
description,
|
|
type: "error",
|
|
})
|
|
}
|
|
|
|
return { showSuccessToast, showErrorToast }
|
|
}
|
|
|
|
export default useCustomToast
|