// @flow import React from 'react'; import Button from 'component/button'; import { Form } from 'component/common/form'; import { Modal } from 'modal/modal'; import Card from 'component/common/card'; type Props = { address: string, amount: number, closeModal: () => void, sendToAddress: (string, number) => void, }; class ModalConfirmTransaction extends React.PureComponent { onConfirmed() { const { closeModal, sendToAddress, amount, address } = this.props; sendToAddress(address, amount); closeModal(); } render() { const { amount, address, closeModal } = this.props; const title = __('Confirm Transaction'); return (
this.onConfirmed()}>
{amount} LBC

{__('To address: ')}

{address}
} actions={ <>

{__('Once the transaction is sent, it cannot be reversed.')}

} />
); } } export default ModalConfirmTransaction;