What concerns are addressed by Redux Toolkit?
What does the configureStore()
do?
configureStore()
is a function that accepts a single configuration object argument, and returns a Redux store instance. It can automatically combine your slice reducers, adds whatever Redux middleware you supply, includes redux-thunk by default, and enables use of the Redux DevTools Extension.How would I use createSlice()
?
createSlice()
accepts an object of reducer functions, a slice name, and an initial state value, and automatically generates a slice reducer with corresponding action creators and action types.What is MobX?
How does MobX make it “impossible” to produce an inconsistent state?
How would we build a reactive user interface?
What take-aways did this tutorial provide?
What are your learning goals after reading and reviewing the class README?