在 Next _app.tsx

问题描述

我遇到了这个棘手的情况,我需要“在我的 Next _app 文件中导出 2 个认值(使用 typescript)。

我开始为 Redux 导出它,我在我的应用程序中使用了它

export default wrapper.withRedux(MyApp);

但现在我需要使用 next-i18next 来翻译我的应用程序,我在其中导入 appWithTranslation 并且我还需要导出它

import { appWithTranslation } from 'next-i18next';
export default appWithTranslation(MyApp);

是否有可能以某种方式拥有 2 个导出认值?

解决方法

这是不可能的,但您可以执行 wrapper.withRedux(appWithTranslation(MyAppp))appWithTranslation(wrapper.withRedux(MyApp))(不确定您需要哪个顺序),因此您将获得一个默认导出 - 使用 redux 和翻译。