1 / 5
The store ___ application state in one place.
-
-
-
-
A store holds state. Hold is the natural collocation; the others are wrong. So holds application state.
2 / 5
We ___ the state when the user logs out.
-
-
-
-
You reset state. Reset is the precise collocation; the others do not fit. So reset the state.
3 / 5
Components ___ updates from the store.
-
-
-
-
Components subscribe to updates. Subscribe to is the technical collocation; the others are wrong. So subscribe to updates.
4 / 5
We ___ shared state to avoid prop drilling.
-
-
-
-
You lift state up. Lift is the idiomatic collocation in this context; the others do not fit. So lift shared state.
5 / 5
Reducers ___ the next state from an action.
-
-
-
-
A reducer computes state. Compute is the precise verb; the others are wrong. So compute the next state.