Skip to content

Commit f1f78a8

Browse files
authored
Merge pull request #2857 from nikogenix/patch-1
Update part6a.md - Fix typo
2 parents 8ba9540 + 06b8b1a commit f1f78a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/6/en/part6a.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -905,7 +905,7 @@ const App = () => {
905905
Aside from the reducer, our application is in one file. This is of course not sensible, and we should separate <i>App</i> into its module.
906906

907907
Now the question is, how can the <i>App</i> access the store after the move? And more broadly, when a component is composed of many smaller components, there must be a way for all of the components to access the store.
908-
There are multiple ways to share the Redux store with components. First, we will look into the newest, and possibly the easiest way is using the [hooks](https://react-redux.js.org/api/hooks) API of the [react-redux](https://react-redux.js.org/) library.
908+
There are multiple ways to share the Redux store with components. First, we will look into the newest, and possibly the easiest way, which is using the [hooks](https://react-redux.js.org/api/hooks) API of the [react-redux](https://react-redux.js.org/) library.
909909

910910
First, we install react-redux
911911

0 commit comments

Comments
 (0)