"use client"; import { AnimatePresence, motion } from "framer-motion"; import { Toast } from "./Toast"; import { useNotificationStore } from "@/lib/notifications"; export function ToastStack() { const toasts = useNotificationStore((s) => s.toasts); const dismissToast = useNotificationStore((s) => s.dismissToast); return (
{toasts.map((toast) => ( ))}
); }