我遇到了这个棘手的情况,我需要"在我的Next _app文件中导出2个默认值(使用typescript(。
我开始为Redux导出它,我正在我的应用中使用它
export default wrapper.withRedux(MyApp);
但现在我需要使用next-i18next翻译我的应用程序,我正在导入appWithTranslation,还需要导出它
import { appWithTranslation } from 'next-i18next';
export default appWithTranslation(MyApp);
有可能以某种方式有两个导出默认值吗?
这是不可能的,但您可以执行wrapper.withRedux(appWithTranslation(MyAppp))
或appWithTranslation(wrapper.withRedux(MyApp))
(不确定您需要哪个顺序(,因此您将同时获得一个默认导出-使用redux和翻译。