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/js/components/modal/InvalidPin.js

16 lines
323 B

/* @flow */
'use strict';
import React from 'react';
const InvalidPin = (props): any => {
const { device } = props.modal;
return (
<div className="pin">
<h3>Entered PIN for { device.label } is not correct.</h3>
<p>Retrying...</p>
</div>
);
}
export default InvalidPin;