/* @flow */ 'use strict'; import React from 'react'; const Confirmation = (props): any => { const { amount, address, coin, token, total, selectedFeeLevel } = props.sendForm; return (

Confirm transaction on your TREZOR

Details are shown on device

{ `${amount} ${token.toUpperCase() }` }

{ address }

{ selectedFeeLevel.label }

); } export default Confirmation;