aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/modals/welcome-beta/welcome-beta.component.js
diff options
context:
space:
mode:
authorWhymarrh Whitby <whymarrh.whitby@gmail.com>2019-01-31 01:14:30 +0800
committerWhymarrh Whitby <whymarrh.whitby@gmail.com>2019-02-05 20:19:55 +0800
commitf3a7054f6b25a43b55bb6bda77b084171d611d12 (patch)
treebd657661a3f107666f67c40b6b448b8210f8c7b7 /ui/app/components/modals/welcome-beta/welcome-beta.component.js
parentc52ba96b85998f34bfb034f801556f4c89b8b6ba (diff)
downloadtangerine-wallet-browser-f3a7054f6b25a43b55bb6bda77b084171d611d12.tar.gz
tangerine-wallet-browser-f3a7054f6b25a43b55bb6bda77b084171d611d12.tar.zst
tangerine-wallet-browser-f3a7054f6b25a43b55bb6bda77b084171d611d12.zip
Add announcement for users migrated to the new UI
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.js30
1 files changed, 0 insertions, 30 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
deleted file mode 100644
index ef1799164..000000000
--- a/ui/app/components/modals/welcome-beta/welcome-beta.component.js
+++ /dev/null
@@ -1,30 +0,0 @@
-import React from 'react'
-import PropTypes from 'prop-types'
-import Modal, { ModalContent } from '../../modal'
-
-const TransactionConfirmed = (props, context) => {
- const { t } = context
- const { hideModal } = props
-
- return (
- <Modal
- onSubmit={() => hideModal()}
- submitText={t('ok')}
- >
- <ModalContent
- title={t('uiWelcome')}
- description={t('uiWelcomeMessage')}
- />
- </Modal>
- )
-}
-
-TransactionConfirmed.contextTypes = {
- t: PropTypes.func,
-}
-
-TransactionConfirmed.propTypes = {
- hideModal: PropTypes.func,
-}
-
-export default TransactionConfirmed