I tried to stringify the json first then use:
but I got Property 'map' does not exist on type 'string'
if I not stringify it I cannot also map it I get
Type 'Object<Attributes>' is not assignable to type 'ReactNode'.
{transactionResults.map((transaction) => (
<Tr>
<Td>{transaction.ethAddress}</Td>
<Td>{transaction.amount</Td>
</Tr>
))}