I have data coming in from an api, it has a field called Amount, I have to display sum of all Amount.
This is how I am displaying all the amounts,
<div>
{orders.map(({ id, Amount }) => {
return (
<div key={id}>
<div>{Amount}</div>
</div>
)
})}
</div>