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. Withdraw some funds into your wallet.

goToWalletManualWithdraw()}> Withdraw
); }