Reading Notes for Day 37 of 401:
Reading
Multiple Reducers Example
Why create multiple reducers? How would you combine multiple reducers? How will you manage state as an immutable object? why?
Redux Docs: Using Combined Reducers
combineReducers is a utility function to simplify the most common use case when writing _ ___ . Explain how combineReducers assembles the new state tree. How would you define initial state in an app using combineReducers?
Redux Docs: Combined Reducer Syntax
Why will you want to split your reducing functions as your app becomes more complex? The ___ helper function turns an object whose values are different reducing functions into a single reducing function you can pass to __. What is a popular convention when naming reducers?