mirror of
https://github.com/trezor/trezor-wallet
synced 2025-07-16 19:48:19 +00:00
21 lines
445 B
JavaScript
21 lines
445 B
JavaScript
/* @flow */
|
|
'use strict';
|
|
|
|
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; |