// @flow import React from 'react'; import { Modal } from 'modal/modal'; import { SITE_HELP_EMAIL } from 'config'; type Props = { closeModal: () => void, }; class ModalTransactionFailed extends React.PureComponent { render() { const { closeModal } = this.props; return (

{__("Try refreshing to fix the issue. If that doesn't work, email %SITE_HELP_EMAIL% for support.", { SITE_HELP_EMAIL, })}

); } } export default ModalTransactionFailed;