import { memo } from 'react'; import { withTranslation } from 'react-i18next'; import StatisticsCard from './StatisticsCard'; function Statistics({ t }) { return (

{t('caption')}

); } export default withTranslation('homePage')(memo(Statistics));