Files
bee-dashboard/src/pages/top-up/BankCardTopUpIndex.tsx
T
Vojtech Simetka cba21bb2e0 feat: set default rpc endpoint (#485)
* feat: add default RPC endpoint

* feat: removed setting RPC endpoint altogherher and altered the routes accordingly
2022-07-22 10:55:19 +02:00

29 lines
887 B
TypeScript

import { Typography } from '@material-ui/core'
import { ReactElement } from 'react'
import Balance from './Balance'
import { ROUTES } from '../../routes'
export function BankCardTopUpIndex(): ReactElement {
return (
<Balance
header={'Top-up with bank card'}
title={'Use a bank card to buy xDAI to the funding wallet address below'}
p={
<Typography>
It is recommended to buy an amount equivalent to 10 EUR maximum. If you&apos;re not familiar with
cryptocurrencies, you may use{' '}
<a
href="https://medium.com/ethereum-swarm/upgrading-swarm-deskotp-app-beta-from-an-ultra-light-to-a-light-node-65d52cab7f2c"
rel="noreferrer"
target="_blank"
>
this guide
</a>
.
</Typography>
}
next={ROUTES.TOP_UP_BANK_CARD_SWAP}
/>
)
}