From c6f228bf142637eb72456aebabd0483d83402373 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Wed, 7 Dec 2022 12:38:50 -0300 Subject: no-fix: moved out AccountPage --- .../demobank-ui/src/pages/home/PaymentOptions.tsx | 54 ++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 packages/demobank-ui/src/pages/home/PaymentOptions.tsx (limited to 'packages/demobank-ui/src/pages/home/PaymentOptions.tsx') diff --git a/packages/demobank-ui/src/pages/home/PaymentOptions.tsx b/packages/demobank-ui/src/pages/home/PaymentOptions.tsx new file mode 100644 index 000000000..69c8d383e --- /dev/null +++ b/packages/demobank-ui/src/pages/home/PaymentOptions.tsx @@ -0,0 +1,54 @@ +import { h, VNode } from "preact"; +import { useState } from "preact/hooks"; +import { useTranslationContext } from "../../context/translation.js"; +import { PaytoWireTransferForm } from "./PaytoWireTransferForm.js"; +import { WalletWithdrawForm } from "./WalletWithdrawForm.js"; + +/** + * Let the user choose a payment option, + * then specify the details trigger the action. + */ +export function PaymentOptions({ currency }: { currency?: string }): VNode { + const { i18n } = useTranslationContext(); + + const [tab, setTab] = useState<"charge-wallet" | "wire-transfer">( + "charge-wallet", + ); + + return ( +
+
+
+ + +
+ {tab === "charge-wallet" && ( +
+

{i18n.str`Obtain digital cash`}

+ +
+ )} + {tab === "wire-transfer" && ( +
+

{i18n.str`Transfer to bank account`}

+ +
+ )} +
+
+ ); +} -- cgit v1.2.3