/* @flow */ import React from 'react'; import type { Props } from './index'; const InvalidPin = (props: Props) => { if (!props.modal.opened) return null; const { device } = props.modal; return (

Entered PIN for { device.label } is not correct

Retrying...

); }; export default InvalidPin;