10 lines
174 B
TypeScript
10 lines
174 B
TypeScript
import { toast } from "sonner"
|
|
|
|
export function notifySuccess(message: string) {
|
|
toast.success(message)
|
|
}
|
|
|
|
export function notifyInfo(message: string) {
|
|
toast(message)
|
|
}
|