1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-07-16 19:48:19 +00:00
trezor-wallet/src/js/components/modal/PassphraseType.js
2018-05-15 16:52:57 +02:00

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;