import { h, VNode } from "preact"; import { ButtonBoxWarning, WarningBox } from "../components/styled"; import { useTranslationContext } from "../context/translation"; export function NoBalanceHelp({ goToWalletManualWithdraw, }: { goToWalletManualWithdraw: () => void; }): VNode { const { i18n } = useTranslationContext(); return (

You have no balance to show.
To withdraw money you can start from your bank site or click the "withdraw" button to use a known exchange.

goToWalletManualWithdraw()}> Withdraw
); }