aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/modals/welcome-beta/welcome-beta.component.js
diff options
context:
space:
mode:
authorAlexander Tseung <alextsg@gmail.com>2018-05-31 07:17:40 +0800
committerAlexander Tseung <alextsg@users.noreply.github.com>2018-06-01 01:37:52 +0800
commitcc73d869fed79c63261821fb7ad8f1e5180ffca2 (patch)
treecb4eb988a13843fa2c01a7fee0ca594bdc98e75f /ui/app/components/modals/welcome-beta/welcome-beta.component.js
parentf4d833cb09758beb62a65ad4011d16bdb81b33ff (diff)
downloadtangerine-wallet-browser-cc73d869fed79c63261821fb7ad8f1e5180ffca2.tar.gz
tangerine-wallet-browser-cc73d869fed79c63261821fb7ad8f1e5180ffca2.tar.zst
tangerine-wallet-browser-cc73d869fed79c63261821fb7ad8f1e5180ffca2.zip
Add new alert modals
Diffstat (limited to 'ui/app/components/modals/welcome-beta/welcome-beta.component.js')
-rw-r--r--ui/app/components/modals/welcome-beta/welcome-beta.component.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/ui/app/components/modals/welcome-beta/welcome-beta.component.js b/ui/app/components/modals/welcome-beta/welcome-beta.component.js
new file mode 100644
index 000000000..61571723a
--- /dev/null
+++ b/ui/app/components/modals/welcome-beta/welcome-beta.component.js
@@ -0,0 +1,23 @@
+import React from 'react'
+import PropTypes from 'prop-types'
+
+const TransactionConfirmed = (props, context) => {
+ const { t } = context
+
+ return (
+ <div className="modal-container__content">
+ <div className="modal-container__title">
+ { `${t('uiWelcome')}` }
+ </div>
+ <div className="modal-container__description">
+ { t('uiWelcomeMessage') }
+ </div>
+ </div>
+ )
+}
+
+TransactionConfirmed.contextTypes = {
+ t: PropTypes.func,
+}
+
+export default TransactionConfirmed