diff options
author | Chi Kei Chan <chikeichan@gmail.com> | 2017-09-07 19:24:03 +0800 |
---|---|---|
committer | Chi Kei Chan <chikeichan@gmail.com> | 2017-09-07 19:24:03 +0800 |
commit | 8b919758e51e16536b6edaf33d4978d551363249 (patch) | |
tree | a1861401480401d94cc908cf2bc5eeabca0d67e6 /ui/app/app.js | |
parent | 983fa2a11721aa7d1307ef76d516e25a50d0eedf (diff) | |
download | tangerine-wallet-browser-8b919758e51e16536b6edaf33d4978d551363249.tar tangerine-wallet-browser-8b919758e51e16536b6edaf33d4978d551363249.tar.gz tangerine-wallet-browser-8b919758e51e16536b6edaf33d4978d551363249.tar.bz2 tangerine-wallet-browser-8b919758e51e16536b6edaf33d4978d551363249.tar.lz tangerine-wallet-browser-8b919758e51e16536b6edaf33d4978d551363249.tar.xz tangerine-wallet-browser-8b919758e51e16536b6edaf33d4978d551363249.tar.zst tangerine-wallet-browser-8b919758e51e16536b6edaf33d4978d551363249.zip |
Send Token screen partial UI
Diffstat (limited to 'ui/app/app.js')
-rw-r--r-- | ui/app/app.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ui/app/app.js b/ui/app/app.js index 9ad85d85d..1ca59e406 100644 --- a/ui/app/app.js +++ b/ui/app/app.js @@ -9,6 +9,7 @@ const NewKeyChainScreen = require('./new-keychain') // accounts const MainContainer = require('./main-container') const SendTransactionScreen = require('./send') +const SendTokenScreen = require('./components/send-token') const ConfirmTxScreen = require('./conf-tx') // notice const NoticeScreen = require('./components/notice') @@ -327,6 +328,10 @@ App.prototype.renderPrimary = function () { log.debug('rendering send tx screen') return h(SendTransactionScreen, {key: 'send-transaction'}) + case 'sendToken': + log.debug('rendering send token screen') + return h(SendTokenScreen, {key: 'sendToken'}) + case 'newKeychain': log.debug('rendering new keychain screen') return h(NewKeyChainScreen, {key: 'new-keychain'}) |