我正试图在我的react native应用程序中实现Redux状态管理,但我面临一个问题。我在我的react应用中做了同样的事情,它工作得很好。我正在使用typescript模板。
export * as actionCreators from "./action-creators";
误差
TransformError src/state/index.ts: Export namespace should be first transformed by `@babel/plugin-proposal-export-namespace-from`.
这个问题的简单解决方案是:
import * as actionCreators from './actions/loginAction'
export {actionCreators}
我认为您使用的是export而不是import,请将export替换为import,然后检查