/* @flow */ 'use strict'; import React from 'react'; import type { Props } from './index'; const Confirmation = (props: Props) => { if (!props.modal.opened) return null; const { device } = props.modal; const { amount, address, currency, total, selectedFeeLevel } = props.sendForm; return (

Confirm transaction on { device.label } device

Details are shown on display

{ `${amount} ${ currency }` }

{ address }

{ selectedFeeLevel.label }

); } export default Confirmation;