import React from 'react'; import Link from 'component/link'; import Modal from 'component/modal'; import { FormRow } from 'component/form'; const WalletSend = (props) => { const { sendToAddress, closeModal, modal, setAmount, setAddress, amount, address, } = props return (

{__("Send Credits")}

0.0) || !address} />
{modal == 'insufficientBalance' && {__("Insufficient balance: after this transaction you would have less than 1 LBC in your wallet.")} } {modal == 'transactionSuccessful' && {__("Your transaction was successfully placed in the queue.")} } {modal == 'transactionFailed' && {__("Something went wrong")}: }
) } export default WalletSend