mirror of
https://github.com/trezor/trezor-wallet
synced 2025-07-05 14:22:35 +00:00
20 lines
432 B
JavaScript
20 lines
432 B
JavaScript
/* @flow */
|
|
|
|
|
|
import React from 'react';
|
|
import type { Props } from './index';
|
|
|
|
const Confirmation = (props: Props) => {
|
|
if (!props.modal.opened) return null;
|
|
const { device } = props.modal;
|
|
|
|
return (
|
|
<div className="confirm-tx">
|
|
<div className="header">
|
|
<h3>Complete the action on { device.label } device</h3>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Confirmation; |