From 1d4815c66c395f4fcc86c30e20f3d005e3cb9ff5 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 15 Nov 2021 11:18:58 -0300 Subject: prettier --- .../src/wallet/ReserveCreated.tsx | 54 ++++++++++++++++------ 1 file changed, 40 insertions(+), 14 deletions(-) (limited to 'packages/taler-wallet-webextension/src/wallet/ReserveCreated.tsx') diff --git a/packages/taler-wallet-webextension/src/wallet/ReserveCreated.tsx b/packages/taler-wallet-webextension/src/wallet/ReserveCreated.tsx index e01336e02..9008e9751 100644 --- a/packages/taler-wallet-webextension/src/wallet/ReserveCreated.tsx +++ b/packages/taler-wallet-webextension/src/wallet/ReserveCreated.tsx @@ -1,8 +1,7 @@ -import { Fragment, VNode } from "preact"; +import { h, Fragment, VNode } from "preact"; import { useState } from "preact/hooks"; import { QR } from "../components/QR"; import { ButtonBox, FontIcon, WalletBox } from "../components/styled"; - export interface Props { reservePub: string; paytos: string[]; @@ -10,30 +9,57 @@ export interface Props { } export function ReserveCreated({ reservePub, paytos, onBack }: Props): VNode { - const [opened, setOpened] = useState(-1) + const [opened, setOpened] = useState(-1); return (

Reserve created!

-

Now you need to send money to the exchange to one of the following accounts

-

To complete the setup of the reserve, you must now initiate a wire transfer using the given wire transfer subject and crediting the specified amount to the indicated account of the exchange.

+

+ Now you need to send money to the exchange to one of the following + accounts +

+

+ To complete the setup of the reserve, you must now initiate a wire + transfer using the given wire transfer subject and crediting the + specified amount to the indicated account of the exchange. +

-- cgit v1.2.3