import React, { Component } from 'react'; import { withI18n } from '@lingui/react'; import { t } from '@lingui/macro'; class TowerLogo extends Component { render () { const { i18n } = this.props; return ( {i18n._(t`Tower Brand Image`)} ); } } export default withI18n()(TowerLogo);