import React from 'react'; import { translate } from '../../translate/translate'; class WalletsHeader extends React.Component { hasActiveSection() { return this.props && this.props.activeSection; } isActiveSectionJumblr() { return this.props.activeSection === 'jumblr'; } render() { if (this.hasActiveSection()) { return (

EasyDEX

  1. { translate('INDEX.DASHBOARD') }

  2. { translate('SIDEBAR.JUMBLR_MOTTO') }
- BTC - USD
- BTCD - USD
); } else { return null; } } } export default WalletsHeader;