diff --git a/src/content/6/en/part6a.md b/src/content/6/en/part6a.md index 090fff9d492..3c193f1eb01 100644 --- a/src/content/6/en/part6a.md +++ b/src/content/6/en/part6a.md @@ -56,7 +56,7 @@ If there is data involved with the action, other fields can be declared as neede 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 returns a new state. -Let's now define a reducer for our application: +Let's now define a reducer for our application at App.jsx: ```js const counterReducer = (state, action) => {