1. What concerns are addressed by Redux Toolkit?
2. What does configureStore()
do?
configureStore()
: wraps createStore
to provide simplified configuration options and good defaults
3. How would I use createSlice()
?
pass in an object of reducers, a slice name, and the initial state and get a slice reducer in return
1. What is Mobx?
Mobx provides a system for managing state.
2. How does MobX make it “impossible” to produce an inconsistent state?
Make sure that everything that can be derived from the application state, will be derived. Automatically.
3. How would we build a reactive user interface?
1. What take-away(s) did this tutorial provide?
1. Looking ahead at this module’s course schedule, What do you look forward to learning?
2. What are your learning goals after reading and reviewing the class README?
-