Files
bigcapital/client/src/components/MoneyExchangeRate.js
2020-11-02 14:50:00 +02:00

6 lines
207 B
JavaScript

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