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

Clone { device.instanceLabel }?

This will create new instance of device which can be used with different passphrase

); } export default RememberDevice;