Skip to content

Commit 604c217

Browse files
authored
Merge pull request #3866 from shu1513/patch-5
Update part6a.md
2 parents 1f918b4 + ab6a076 commit 604c217

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
@@ -56,7 +56,7 @@ If there is data involved with the action, other fields can be declared as neede
5656

5757
The impact of the action to the state of the application is defined using a [reducer](https://redux.js.org/tutorials/essentials/part-1-overview-concepts#reducers). In practice, a reducer is a function that is given the current state and an action as parameters. It <i>returns</i> a new state.
5858

59-
Let's now define a reducer for our application:
59+
Let's now define a reducer for our application at App.jsx:
6060

6161
```js
6262
const counterReducer = (state, action) => {

0 commit comments

Comments
 (0)