import { Translate } from "@gnu-taler/taler-util"; import { h, VNode } from "preact"; import { ButtonBoxWarning, WarningBox } from "../components/styled"; export function NoBalanceHelp({ goToWalletManualWithdraw, }: { goToWalletManualWithdraw: () => void; }): VNode { 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
); }