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

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

Retrying...

); } export default InvalidPin;