You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-wallet/src/js/components/modal/Confirmation.js

17 lines
433 B

/* @flow */
'use strict';
import React from 'react';
const Confirmation = (props): any => {
const { onConfirmation, onConfirmationCancel } = props.modalActions;
return (
<div className="confirmation">
<h3>Confirm</h3>
<button onClick={ onConfirmation }>Export</button>
<button onClick={ onConfirmationCancel }>Cancel</button>
</div>
);
}
export default Confirmation;