import type { Toast } from "../hooks/useToast"; interface ToastContainerProps { toasts: Toast[]; onRemove: (id: number) => void; } export function ToastContainer({ toasts }: ToastContainerProps) { return (
{toasts.map((toast) => (
{toast.message}
))}
); }