mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
11 lines
325 B
JavaScript
11 lines
325 B
JavaScript
import React from 'react';
|
|
import { formattedAmount } from 'utils';
|
|
|
|
export function FormatNumber({ value, currency = '', noZero }) {
|
|
return formattedAmount(value, currency, { noZero });
|
|
}
|
|
|
|
export function FormatNumberCell({ value, column: { formatNumber } }) {
|
|
return <FormatNumber value={value} {...formatNumber} />;
|
|
}
|