Skip to content

Commit 7e94950

Browse files
committed
Fix "Summary" block titles
1 parent a7bdd45 commit 7e94950

14 files changed

+14
-14
lines changed

docs/tutorials/essentials/part-1-overview-concepts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ Here's what that data flow looks like visually:
441441

442442
Redux does have a number of new terms and concepts to remember. As a reminder, here's what we just covered:
443443

444-
:::Summary
444+
:::tip Summary
445445

446446
- **Redux is a library for managing global application state**
447447
- Redux is typically used with the React-Redux library for integrating Redux and React together

docs/tutorials/essentials/part-2-app-structure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,7 @@ Now, any React components that call `useSelector` or `useDispatch` will be talki
728728

729729
Even though the counter example app is pretty small, it showed all the key pieces of a React + Redux app working together. Here's what we covered:
730730

731-
:::Summary
731+
:::tip Summary
732732

733733
- **We can create a Redux store using the Redux Toolkit `configureStore` API**
734734
- `configureStore` accepts a `reducer` function as a named argument

docs/tutorials/essentials/part-3-data-flow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ Notice that our `AddPostForm` component has some React `useState` hooks inside,
428428

429429
Let's recap what you've learned in this section:
430430

431-
:::Summary
431+
:::tip Summary
432432

433433
- **Redux state is updated by "reducer functions"**:
434434
- Reducers always calculate a new state _immutably_, by copying existing state values and modifying the copies with the new data

docs/tutorials/essentials/part-4-using-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -819,7 +819,7 @@ It's actually starting to look more useful and interesting!
819819
820820
We've covered a lot of information and concepts in this section. Let's recap the important things to remember:
821821
822-
:::Summary
822+
:::tip Summary
823823
824824
- **Any React component can use data from the Redux store as needed**
825825
- Any component can read any data that is in the Redux store

docs/tutorials/essentials/part-5-async-logic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -784,7 +784,7 @@ Here's what our app looks like now that we're fetching data from that fake API:
784784
785785
As a reminder, here's what we covered in this section:
786786

787-
:::Summary
787+
:::tip Summary
788788

789789
- **You can write reusable "selector" functions to encapsulate reading values from the Redux state**
790790
- Selectors are functions that get the Redux `state` as an argument, and return some data

docs/tutorials/essentials/part-6-performance-normalization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -978,7 +978,7 @@ Congratulations, you've completed the Redux Essentials tutorial! Let's see what
978978
979979
Here's what we covered in this section:
980980

981-
:::Summary
981+
:::tip Summary
982982

983983
- **Memoized selector functions can be used to optimize performance**
984984
- Redux Toolkit re-exports the `createSelector` function from Reselect, which generates memoized selectors

docs/tutorials/fundamentals/part-1-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ That counter example was small, but it does show all the working pieces of a rea
307307

308308
With that in mind, let's review what we've learned so far:
309309

310-
:::Summary
310+
:::tip Summary
311311

312312
- **Redux is a library for managing global application state**
313313
- Redux is typically used with the React-Redux library for integrating Redux and React together

docs/tutorials/fundamentals/part-2-concepts-data-flow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ Here's what that data flow looks like visually:
357357

358358
## What You've Learned
359359

360-
:::Summary
360+
:::tip Summary
361361

362362
- **Redux's intent can be summarized in three principles**
363363
- Global app state is kept in a single store

docs/tutorials/fundamentals/part-3-state-actions-reducers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,7 @@ Here's the contents of our app so far:
706706
sandbox="allow-forms allow-modals allow-popups allow-presentation allow-same-origin allow-scripts"
707707
></iframe>
708708
709-
:::Summary
709+
:::tip Summary
710710

711711
- **Redux apps use plain JS objects, arrays, and primitives as the state values**
712712
- The root state value should be a plain JS object

docs/tutorials/fundamentals/part-4-store.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ Let's see how our example app looks now:
606606
607607
And as a reminder, here's what we covered in this section:
608608

609-
:::Summary
609+
:::tip Summary
610610

611611
- **Redux apps always have a single store**
612612
- Stores are created with the Redux `createStore` API

docs/tutorials/fundamentals/part-5-ui-and-react.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@ Let's see how the app looks now, including the components and sections we skippe
553553
sandbox="allow-modals allow-forms allow-popups allow-scripts allow-same-origin"
554554
></iframe>
555555
556-
:::Summary
556+
:::tip Summary
557557
558558
- **Redux stores can be used with any UI layer**
559559
- UI code always subscribes to the store, gets the latest state, and redraws itself

docs/tutorials/fundamentals/part-6-async-logic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ Here's what the current app looks like:
445445
sandbox="allow-modals allow-forms allow-popups allow-scripts allow-same-origin"
446446
></iframe>
447447
448-
:::Summary
448+
:::tip Summary
449449

450450
- **Redux middleware were designed to enable writing logic that has side effects**
451451
- "Side effects" are code that changes state/behavior outside a function, like AJAX calls, modifying function arguments, or generating random values

docs/tutorials/fundamentals/part-7-standard-patterns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -972,7 +972,7 @@ Here's how our app looks after it's been fully converted to use these patterns:
972972
sandbox="allow-modals allow-forms allow-popups allow-scripts allow-same-origin"
973973
></iframe>
974974
975-
:::Summary
975+
:::tip Summary
976976

977977
- **Action creator functions encapsulate preparing action objects and thunks**
978978
- Action creators can accept arguments and contain setup logic, and return the final action object or thunk function

docs/tutorials/fundamentals/part-8-modern-redux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -838,7 +838,7 @@ Let's take one final look at the completed todo application, including all the c
838838
839839
And we'll do a final recap of the key points you learned in this section:
840840

841-
:::Summary
841+
:::tip Summary
842842

843843
- **Redux Toolkit (RTK) is the standard way to write Redux logic**
844844
- RTK includes APIs that simplify most Redux code

0 commit comments

Comments
 (0)