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

Confirm transaction on your TREZOR

Details are shown on device

{ `${amount} ${ coinSymbol }` }

{ address }

{ selectedFeeLevel.label }

); } export default Confirmation;