1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-07-15 11:08:18 +00:00
trezor-wallet/src/components/modals/PassphraseType.js
2018-08-30 14:29:18 +02:00

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;