在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);

有可能以某种方式有两个导出默认值吗?

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

相关内容

  • 没有找到相关文章

最新更新