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