Combine Reducer

https://codesandbox.io/s/913nzp83rr

Reducer を一つにまとめる

複数の state を管理しやすくするために、reducer を複数用意し、ツリー状に紐付けましょう。そのためには combineReducer を用います。

reducer/num.js

reducer ディレクトリの中に移動させます。

reducer/day.js

reducer/title.js

reducers/index.js

複数の reducer をまとめあげます。

index.js

containers/App.js

components/App.js

Last updated