mirror of
https://github.com/trezor/trezor-wallet
synced 2025-06-30 20:02:39 +00:00
17 lines
433 B
JavaScript
17 lines
433 B
JavaScript
/* @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; |