/* @flow */ 'use strict'; import React from 'react'; import type { Props } from './index'; const RememberDevice = (props: Props) => { if (!props.modal.opened) return null; 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;