From 4a9ad123f14f7b427cfd0eb862f1b8d2c6660a89 Mon Sep 17 00:00:00 2001 From: Soichiro Miki Date: Sat, 28 Sep 2024 17:00:45 +0900 Subject: [PATCH] Typo --- src/content/learn/escape-hatches.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/learn/escape-hatches.md b/src/content/learn/escape-hatches.md index 114d91d18..0881725c1 100644 --- a/src/content/learn/escape-hatches.md +++ b/src/content/learn/escape-hatches.md @@ -191,7 +191,7 @@ input { display: block; margin-bottom: 20px; } -## そのエフェクトは必要かも {/*you-might-not-need-an-effect*/} +## そのエフェクトは不要かも {/*you-might-not-need-an-effect*/} エフェクトは React のパラダイムからの避難ハッチです。React の外に「踏み出して」、何らかの外部システムと同期させることができるものです。外部システムが関与していない場合(例えば、props や state の変更に合わせてコンポーネントの state を更新したい場合)、エフェクトは必要ありません。不要なエフェクトを削除することで、コードが読みやすくなり、実行速度が向上し、エラーが発生しにくくなります。