Skip to content

Commit

Permalink
Update part-2-app-structure.md (#4757)
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick-Erichsen authored Nov 26, 2024
1 parent 9ff849a commit 41403bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/tutorials/essentials/part-2-app-structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ Selector functions are normally called with the entire Redux root state object a

Since we're using TypeScript, we also need to use the `RootState` type that was exported from `store.ts` to define the type of the `state` argument in each selector.

Note that you **don't have to create separate selector functions for every field in every slice!** (This particular example did, to show off the idea of writing selectors, but we only had two fields in `counterSlice.ts` anyway) Instead, [find a balance in how many selectors you write](../../usage/deriving-data-selectors.md#balance-selector-usage)
Note that you **don't have to create separate selector functions for every field in every slice!** (This particular example did, to show off the idea of writing selectors, but we only had two fields in `counterSlice.ts` anyway) Instead, [find a balance in how many selectors you write](../../usage/deriving-data-selectors.md#balance-selector-usage).

:::info More Info on Selectors

Expand Down

0 comments on commit 41403bb

Please sign in to comment.