You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/basics/Store.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
# Store
2
2
3
-
In the previous steps, we have defined the [actions](Action.md) that represent the facts about “what happened” and the [reducers](Reducers.md) that update the state according to those actions.
3
+
In the previous sections, we defined the [actions](Action.md) that represent the facts about “what happened” and the [reducers](Reducers.md) that update the state according to those actions.
4
4
5
-
**Store** is an object that brings them together. The store has the following responsibilities:
5
+
The **Store** is the object that brings them together. The store has the following responsibilities:
6
6
7
7
* Holds application state;
8
8
* Allows access to state via [`getState()`](../api/Store.md#getState);
@@ -72,4 +72,4 @@ let store = createStore(todoApp);
72
72
73
73
## Next Steps
74
74
75
-
Before creating a UI for our todo app, we will take a detour to [how the data flows in a Redux application](DataFlow.md).
75
+
Before creating a UI for our todo app, we will take a detour to see [how the data flows in a Redux application](DataFlow.md).
0 commit comments