aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/modals/modal.js
diff options
context:
space:
mode:
authorsdtsui <szehungdanieltsui@gmail.com>2017-08-21 10:28:20 +0800
committersdtsui <szehungdanieltsui@gmail.com>2017-08-21 10:28:20 +0800
commit73a593b42e3a81b721cfa2f8913565a8b800f983 (patch)
treea0048615de310dbaa5a78963af3bec89e10a5a7f /ui/app/components/modals/modal.js
parent71b2dd290b2bbf3107d06d0616ec8858d21b44da (diff)
downloadtangerine-wallet-browser-73a593b42e3a81b721cfa2f8913565a8b800f983.tar.gz
tangerine-wallet-browser-73a593b42e3a81b721cfa2f8913565a8b800f983.tar.zst
tangerine-wallet-browser-73a593b42e3a81b721cfa2f8913565a8b800f983.zip
Hook up template for New Account Modal
Diffstat (limited to 'ui/app/components/modals/modal.js')
-rw-r--r--ui/app/components/modals/modal.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/ui/app/components/modals/modal.js b/ui/app/components/modals/modal.js
index 04a34cfed..4b3d3b09c 100644
--- a/ui/app/components/modals/modal.js
+++ b/ui/app/components/modals/modal.js
@@ -11,6 +11,7 @@ const isPopupOrNotification = require('../../../../app/scripts/lib/is-popup-or-n
const BuyOptions = require('./buy-options-modal')
const AccountDetailsModal = require('./account-details-modal')
const EditAccountNameModal = require('./edit-account-name-modal')
+const NewAccountModal = require('./new-account-modal')
const MODALS = {
BUY: [
@@ -22,6 +23,9 @@ const MODALS = {
ACCOUNT_DETAILS: [
h(EditAccountNameModal, {}, []),
],
+ NEW_ACCOUNT: [
+ h(NewAccountModal, {}, []),
+ ]
}
function mapStateToProps (state) {