import { 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[]; onBack: () => void; } export function ReserveCreated({ reservePub, paytos, onBack }: Props): VNode { 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.

); }