Fix : Exchange Rate

This commit is contained in:
elforjani3
2020-11-02 14:50:00 +02:00
parent 731b8fd119
commit ad66f35162
9 changed files with 213 additions and 149 deletions

View File

@@ -0,0 +1,5 @@
import React from 'react';
import { formattedExchangeRate } from 'utils';
export default function MoneyExchangeRate({ amount, currency }) {
return <span>{formattedExchangeRate(amount, currency)}</span>;
}