mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
6 lines
207 B
JavaScript
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>;
|
|
}
|