'use client' import { useGetReferralPayments } from '@/app/hooks/react-query/useGetReferralPayments'; import { useEffect } from 'react'; export default function PaymentsHistory() { const { data: paymentsData } = useGetReferralPayments(); useEffect(() => { console.log(paymentsData); }, [paymentsData]) return ( <>