reading-notes

View the Project on GitHub TrunkOfUkuleles/reading-notes

Questions

  1. How granular should your reducers be? depends on the flow of data actions. it can make each part very customizable, but means more tracking
  2. Pro or Con – multiple reducers can “fire” when a commonly named action is dispatched pro - this simplified the way we fire actions
  3. Name a strategy for preventing the above keep an eye on loops, and change types accordingly

Vocab

store - glabal storage for you app. Provider wrapper gives app access combined reducers - the combination of the reducer functions into one source yt obe referenced

Preview

Which 3 things had you heard about previously and now have better clarity on? thunk, state management, na Which 3 things are you hoping to learn more about in the upcoming lecture/demo? thunk, async calls, What are you most excited about trying to implement or see how it works? an actual working site