Skip to content

Commit ae9726a

Browse files
rammbarickhanlonii
andauthored
Docs: Fix typos in thinking-in-react.md (#7179)
* Fix typos in thinking-in-react.md * Update src/content/learn/thinking-in-react.md --------- Co-authored-by: Ricky <[email protected]>
1 parent 8a62ce3 commit ae9726a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/content/learn/thinking-in-react.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,8 @@ Now let's run through our strategy for them:
268268
1. **Identify components that use state:**
269269
* `ProductTable` needs to filter the product list based on that state (search text and checkbox value).
270270
* `SearchBar` needs to display that state (search text and checkbox value).
271-
1. **Find their common parent:** The first parent component both components share is `FilterableProductTable`.
272-
2. **Decide where the state lives**: We'll keep the filter text and checked state values in `FilterableProductTable`.
271+
2. **Find their common parent:** The first parent component both components share is `FilterableProductTable`.
272+
3. **Decide where the state lives**: We'll keep the filter text and checked state values in `FilterableProductTable`.
273273

274274
So the state values will live in `FilterableProductTable`.
275275

0 commit comments

Comments
 (0)