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

Entered PIN for { device.label } is not correct.

Retrying...

); } export default InvalidPin;