import { useTranslation } from "react-i18next" import { MoneyAmountCell } from "../../common/money-amount-cell" import { PlaceholderCell } from "../../common/placeholder-cell" type TotalCellProps = { currencyCode: string total: number | null className?: string } export const TotalCell = ({ currencyCode, total, className, }: TotalCellProps) => { if (!total) { return } return ( ) } export const TotalHeader = () => { const { t } = useTranslation() return (
{t("fields.total")}
) }