You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-wallet/src/components/modal/InvalidPin.js

19 lines
393 B

6 years ago
/* @flow */
6 years ago
import React from 'react';
import type { Props } from './index';
6 years ago
const InvalidPin = (props: Props) => {
6 years ago
if (!props.modal.opened) return null;
6 years ago
const { device } = props.modal;
6 years ago
return (
6 years ago
<div className="pin">
<h3>Entered PIN for { device.label } is not correct</h3>
6 years ago
<p>Retrying...</p>
6 years ago
</div>
);
};
6 years ago
export default InvalidPin;