You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
504 B
24 lines
504 B
7 years ago
|
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
|