моя страница подключена к хранилищу редуксов, вот так:
export default withRouter(
connect(
mapStateToProps,
{ postResendEmailConfirmation, getEmailVerificationCheck, getPermissions }
)(Welcome))
);
После изучения учебника и добавления конфигурации я импортировал:
import { withNamespaces } from 'react-i18next';
но я не знаю, как их соединить. Я сделал это:
export default withRouter(
connect(
mapStateToProps,
{ postResendEmailConfirmation, getEmailVerificationCheck, getPermissions }
)(withNamespaces('translations')(Welcome))
);
но ошибка:
Component.js:144 [React-imported-component] TypeError: (0 , _reactI18next.withNamespaces) is not a function