From 41e746beaa85980a614a26f135a4b084a87a21db Mon Sep 17 00:00:00 2001 From: Mark Erikson Date: Thu, 1 Aug 2024 14:47:21 -0400 Subject: [PATCH] Final sandbox updates --- docs/tutorials/essentials/part-3-data-flow.md | 20 +++++++++---------- .../tutorials/essentials/part-4-using-data.md | 2 +- .../essentials/part-5-async-logic.md | 2 +- .../part-6-performance-normalization.md | 2 +- .../essentials/part-7-rtk-query-basics.md | 2 +- .../essentials/part-8-rtk-query-advanced.md | 2 +- 6 files changed, 15 insertions(+), 15 deletions(-) diff --git a/docs/tutorials/essentials/part-3-data-flow.md b/docs/tutorials/essentials/part-3-data-flow.md index 630ee94201..5519bcebba 100644 --- a/docs/tutorials/essentials/part-3-data-flow.md +++ b/docs/tutorials/essentials/part-3-data-flow.md @@ -643,6 +643,16 @@ Remember, **the Redux store should only contain data that's considered "global" ## What You've Learned +We've set up the basics of a Redux app - store, slice with reducers, and UI to dispatch actions. Here's what the app looks like so far: + + + Let's recap what you've learned in this section: :::tip Summary @@ -664,16 +674,6 @@ Let's recap what you've learned in this section: ::: -Here's what the app looks like so far: - - - ## What's Next? Now that you know the basic Redux data flow, move on to [Part 4: Using Redux Data](./part-4-using-data.md), where we'll add some additional functionality to our app and see examples of how to work with the data that's already in the store. diff --git a/docs/tutorials/essentials/part-4-using-data.md b/docs/tutorials/essentials/part-4-using-data.md index 7ec735133e..af7ab4ef87 100644 --- a/docs/tutorials/essentials/part-4-using-data.md +++ b/docs/tutorials/essentials/part-4-using-data.md @@ -1474,7 +1474,7 @@ Here's what our app looks like after all these changes: