'use client'; import { useToastStore } from '@/store/toast-store'; import { Toast } from '@/components/ui/toast'; export function ToastProvider() { const { toasts } = useToastStore(); if (toasts.length === 0) return null; return (
{toasts.map((toast) => (
))}
); }