Files
Frontend/src/app/components/ui/toaster.tsx
Liam 18a782243e
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m9s
move common dir
2024-04-20 02:35:52 +01:00

34 lines
767 B
TypeScript

"use client";
import {
Toast,
ToastClose,
ToastDescription,
ToastProvider,
ToastTitle,
ToastViewport,
} from "@/app/components/ui/toast";
import { useToast } from "@/app/common/use-toast";
export function Toaster() {
const { toasts } = useToast();
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>
);
})}
<ToastViewport />
</ToastProvider>
);
}