mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
8 lines
195 B
JavaScript
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>
|
|
);
|
|
} |