transfer fund implemented

This commit was merged in pull request #30.
This commit is contained in:
victorAnumudu
2023-04-28 15:23:43 +01:00
parent 67b639c64f
commit aa9482bb95
5 changed files with 139 additions and 95 deletions
+2 -2
View File
@@ -31,11 +31,11 @@ function Balance({wallet, payment, coupon, purchase}) {
</div>
<div className='balance-info'>
<p className='py-2'>balance</p>
<span className='text-sm py-1 px-2 bg-green-100 text-green-500 rounded-lg'>{item.symbol}{(item.amount*1).toFixed(2)}</span>
<span className='text-sm py-1 px-2 bg-green-100 text-green-500 rounded-lg'>{item.symbol}{(item.amount*0.01).toFixed(2)}</span>
</div>
<div className='balance-info'>
<p className='py-2'>Escrow</p>
<span className='text-sm py-1 px-2 bg-red-100 text-red-500 rounded-lg'>{item.symbol}{(item.escrow*1).toFixed(2)}</span>
<span className='text-sm py-1 px-2 bg-red-100 text-red-500 rounded-lg'>{item.symbol}{(item.escrow*0.01).toFixed(2)}</span>
</div>
</div>