Files
bigcapital/client/src/components/Money.js
Ahmed Bouhuolia 011542e2a3 feat: expand sidebar once open form editor page.
feat: rounding money amount.
feat: optimize page form structure.
feat: refactoring make journal and expense form with FastField component.
2020-11-29 00:10:18 +02:00

8 lines
195 B
JavaScript

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