From 3857f32c5b3502820c428c354cebabc9d6eb4447 Mon Sep 17 00:00:00 2001 From: haftav Date: Tue, 30 Oct 2018 11:57:18 -0600 Subject: [PATCH] Grammar fix (#23530) --- guide/english/react/state-vs-props/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/react/state-vs-props/index.md b/guide/english/react/state-vs-props/index.md index 1c2d9d63a1..3077d38ebb 100644 --- a/guide/english/react/state-vs-props/index.md +++ b/guide/english/react/state-vs-props/index.md @@ -50,7 +50,7 @@ In the above example, `age` is the state of `Person` component. ## Props: * Props are similar to method arguments. They are passed to a component where that component is used. -* Props is immutable. They are read-only. +* Props are immutable. They are read-only. See the below example to get an idea of Props: