/* @flow */ import React, { Component } from 'react'; import { findAccount } from 'reducers/AccountsReducer'; const Wrapper = styled.div` width: 390px; `; const Header = styled.div` `; const Content = styled.div` border-top: 1px solid ${colors.DIVIDER}; background: ${colors.MAIN}; padding: 24px 48px; `; const Label = styled.div` font-size: 10px; color: ${colors.TEXT_SECONDARY}; `; const ConfirmAddress = (props: Props) => { const { account, network, } = props.selectedAccount; if (!account || !network) return null; return (

Confirm address on TREZOR

Please compare your address on device with address shown bellow.

{ account.address }

); }; export default ConfirmAddress;