diff options
author | brunobar79 <brunobar79@gmail.com> | 2018-07-14 01:49:20 +0800 |
---|---|---|
committer | brunobar79 <brunobar79@gmail.com> | 2018-07-14 01:49:20 +0800 |
commit | 53995463883c062157a3d725e7cb8fe54486badb (patch) | |
tree | 58b964ad64bbec2227bc781e6d5937d343e78494 /ui/app/components | |
parent | 82a93bb2872809df19744afdd95c68485c0dcd25 (diff) | |
download | dexon-wallet-53995463883c062157a3d725e7cb8fe54486badb.tar.gz dexon-wallet-53995463883c062157a3d725e7cb8fe54486badb.tar.zst dexon-wallet-53995463883c062157a3d725e7cb8fe54486badb.zip |
added affiliate link to trezor
Diffstat (limited to 'ui/app/components')
-rw-r--r-- | ui/app/components/pages/create-account/connect-hardware/connect-screen.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ui/app/components/pages/create-account/connect-hardware/connect-screen.js b/ui/app/components/pages/create-account/connect-hardware/connect-screen.js index 0dd8e285..8d9980b1 100644 --- a/ui/app/components/pages/create-account/connect-hardware/connect-screen.js +++ b/ui/app/components/pages/create-account/connect-hardware/connect-screen.js @@ -46,6 +46,12 @@ class ConnectScreen extends Component { { onClick: this.props.connectToTrezor.bind(this) }, this.props.btnText ), + h('div.hw-connect__get-trezor', {}, [ + h('a', { + href: 'https://shop.trezor.io/?a=metamask', + target: '_blank', + }, this.context.t('getYourTrezor')), + ]), ]) ) } |