From cd00835f44615e9bbdb95ac4cd1af5b6e4dbce9e Mon Sep 17 00:00:00 2001 From: kenshanta Date: Wed, 9 Apr 2025 20:11:22 +0200 Subject: [PATCH] docs: update subtitle #67 to match content --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f208cde5..42496273 100644 --- a/README.md +++ b/README.md @@ -2087,7 +2087,7 @@ class ParentComponent extends React.Component { **[⬆ Back to Top](#table-of-contents)** -67. ### Why you can't update props in React? +67. ### Why can't you update props in React? The React philosophy is that props should be _immutable_(read only) and _top-down_. This means that a parent can send any prop values to a child, but the child can't modify received props.