import PropTypes from 'prop-types'; import React, { Component } from 'react'; import ZENDESK_URLS from '../../../helpers/constants/zendesk-url'; export default class PermissionsConnectFooter extends Component { static contextTypes = { t: PropTypes.func, }; render() { const { t } = this.context; return (
{t('onlyConnectTrust')}
{ global.platform.openTab({ url: ZENDESK_URLS.USER_GUIDE_DAPPS, }); }} > {t('learnMoreUpperCase')}
); } }