UNPKG

@coin-voyage/paykit

Version:

Seamless crypto payments. Onboard users from any chain, any coin into your app with one click.

11 lines (10 loc) 665 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { PageContent } from "../../ui/Modal/styles"; import { OrderHeader } from "../../ui/OrderHeader"; import OptionsList from "../../ui/OptionsList"; import PoweredByFooter from "../../ui/PoweredByFooter"; import { usePayToAddressTokens } from "../../../hooks/usePayToAddressTokens"; export default function SelectPayToAddressToken() { const { options, isLoading } = usePayToAddressTokens(); return (_jsxs(PageContent, { children: [_jsx(OrderHeader, { minified: true }), _jsx(OptionsList, { isLoading: isLoading, requiredSkeletons: 4, options: options }), _jsx(PoweredByFooter, {})] })); }