我得到这个错误
_react.default.memo 不是函数
和wrapWithConnect
。
这是一个react-native
项目,在我使用 connect 函数将我的调度连接到我的react组件之前,它运行良好:
包版本:
"react": "16.5.0",
"react-redux": "^6.0.1",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
代码
const mapDispatchToProps = dispatch => {
return {
sendEmail: (email, navigateMap) => dispatch(sendEmail, navigateMap))
export default connect(null, mapDispatchToProps)(Login)