1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-02-03 13:13:32 +01:00

34 lines
785 B
TypeScript
Raw Normal View History

2024-04-21 19:34:59 +05:30
import {
Toast,
ToastClose,
ToastDescription,
ToastProvider,
ToastTitle,
ToastViewport,
2024-04-22 13:25:44 +05:30
} from "@/components/ui/toast";
import { useToast } from "@/components/ui/use-toast";
2024-04-21 19:34:59 +05:30
export function Toaster() {
2024-04-22 13:25:44 +05:30
const { toasts } = useToast();
2024-04-21 19:34:59 +05:30
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-04-22 13:25:44 +05:30
);
2024-04-21 19:34:59 +05:30
})}
<ToastViewport />
</ToastProvider>
2024-04-22 13:25:44 +05:30
);
2024-04-21 19:34:59 +05:30
}