Newer
Older
CrypticOreWallet / src / pages / dashboard / BlockValueCard.tsx
@Drew Lemmy Drew Lemmy on 20 Feb 2021 289 bytes feat: wallet overview on dashboard
import React from "react";
import { Card } from "antd";

import { useTranslation } from "react-i18next";

export function BlockValueCard(): JSX.Element {
  const { t } = useTranslation();

  return <Card title={t("dashboard.blockValueCardTitle")} className="dashboard-card">

  </Card>;
}