2024-09-07 09:12:48 +02:00
|
|
|
"use client";
|
2024-07-03 19:29:49 +02:00
|
|
|
|
|
|
|
import {
|
|
|
|
Toast,
|
|
|
|
ToastClose,
|
|
|
|
ToastDescription,
|
|
|
|
ToastProvider,
|
|
|
|
ToastTitle,
|
2024-09-07 09:12:48 +02:00
|
|
|
ToastViewport
|
|
|
|
} from "@/components/ui/toast";
|
|
|
|
import { useToast } from "@/components/ui/use-toast";
|
2024-07-03 19:29:49 +02:00
|
|
|
|
|
|
|
export function Toaster() {
|
2024-09-07 09:12:48 +02:00
|
|
|
const { toasts } = useToast();
|
2024-07-03 19:29:49 +02:00
|
|
|
|
|
|
|
return (
|
|
|
|
<ToastProvider>
|
|
|
|
{toasts.map(function ({ id, title, description, action, ...props }) {
|
|
|
|
return (
|
|
|
|
<Toast key={id} {...props}>
|
|
|
|
<div className="grid gap-1">
|
|
|
|
{title && <ToastTitle>{title}</ToastTitle>}
|
|
|
|
{description && (
|
|
|
|
<ToastDescription>{description}</ToastDescription>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
{action}
|
|
|
|
<ToastClose />
|
|
|
|
</Toast>
|
2024-09-07 09:12:48 +02:00
|
|
|
);
|
2024-07-03 19:29:49 +02:00
|
|
|
})}
|
|
|
|
<ToastViewport />
|
|
|
|
</ToastProvider>
|
2024-09-07 09:12:48 +02:00
|
|
|
);
|
2024-07-03 19:29:49 +02:00
|
|
|
}
|