Skip to content

Commit

Permalink
Merge pull request #791 from nekonado/fix/typo-thinking-in-react
Browse files Browse the repository at this point in the history
fix(typo): 「React の流儀」ページの脱字を修正
  • Loading branch information
smikitky authored Sep 21, 2024
2 parents 133bbdf + 47edbf0 commit cf31e45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/content/learn/thinking-in-react.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,8 @@ state とは、アプリが記憶する必要のある、変化するデータ
もう一度、それぞれを見ていきましょう:

1. 元の商品リストは **props として渡されるので、state ではありません**
2. 検索テキストは state のようです。それは時間が経つと変わりますし、何から計算することはできません
3. チェックボックスの値も state のようです。それは時間が経つと変わりますし、何から計算することはできません
2. 検索テキストは state のようです。それは時間が経つと変わりますし、何からも計算することはできません
3. チェックボックスの値も state のようです。それは時間が経つと変わりますし、何からも計算することはできません
4. フィルタリングされた商品のリストは、元の商品リストを検索テキストとチェックボックスの値に従ってフィルタリングすることで**計算できるため、state ではありません**

つまり、検索テキストとチェックボックスの値だけが state だということです! よくできました!
Expand Down

0 comments on commit cf31e45

Please sign in to comment.