mirror of
https://github.com/trezor/trezor-wallet
synced 2025-03-12 06:36:04 +00:00
21 lines
764 B
JavaScript
21 lines
764 B
JavaScript
/* @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 (
|
|
<div className="duplicate">
|
|
<h3>Clone { device.instanceLabel }?</h3>
|
|
<p>This will create new instance of device which can be used with different passphrase</p>
|
|
<button onClick={ event => onDuplicateDevice( { ...device, instanceLabel: "TODO: user label from input" } ) }>Create new instance</button>
|
|
<button className="white" onClick={ onCancel }>Cancel</button>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default RememberDevice; |