Skip to content

Commit 06b8b1a

Browse files
authored
Update part6a.md - Fix typo
1 parent a46fcd3 commit 06b8b1a

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
@@ -846,7 +846,7 @@ const App = () => {
846846
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.
847847

848848
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.
849-
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.
849+
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.
850850

851851
First, we install react-redux
852852

0 commit comments

Comments
 (0)