aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/modals/welcome-beta/welcome-beta.component.js
diff options
context:
space:
mode:
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