nefe / redux-in-chinese

Redux 中文文档

Home Page:https://cn.redux.js.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

函数少了立即执行

Han3Jim opened this issue · comments

https://cn.redux.js.org/docs/recipes/ComputingDerivedData.html#

底部最后一个函数

const VisibleTodoList = connect(
makeMapStateToProps,
mapDispatchToProps
)(TodoList)
应该为
const VisibleTodoList = connect(
makeMapStateToProps(),
mapDispatchToProps
)(TodoList)

Fixed