Newer
Older
CrypticOreWallet / src / layout / sidebar / SidebarTotalBalance.tsx
@Drew Lemmy Drew Lemmy on 15 Feb 2021 438 bytes feat: translation debug page
import React from "react";
import { useTranslation } from "react-i18next";

import { KristValue } from "../../components/KristValue";

export function SidebarTotalBalance({ balance }: { balance: number }): JSX.Element {
  const { t } = useTranslation();

  return (
    <div className="site-sidebar-header site-sidebar-total-balance">
      <h5>{t("sidebar.totalBalance")}</h5>
      <KristValue value={balance} long />
    </div>
  );
}