From 949fc607a9aa5ad40419c4dcc28212861c809be3 Mon Sep 17 00:00:00 2001 From: Jobayer Hossain <34404032+jobayer977@users.noreply.github.com> Date: Wed, 7 Sep 2022 18:44:39 +0600 Subject: [PATCH] docs: fix typo (#4944) It seems that there is an article usage problem here. --- content/docs/composition-vs-inheritance.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/composition-vs-inheritance.md b/content/docs/composition-vs-inheritance.md index c86735ef..28c8426a 100644 --- a/content/docs/composition-vs-inheritance.md +++ b/content/docs/composition-vs-inheritance.md @@ -169,4 +169,4 @@ At Facebook, we use React in thousands of components, and we haven't found any u Props and composition give you all the flexibility you need to customize a component's look and behavior in an explicit and safe way. Remember that components may accept arbitrary props, including primitive values, React elements, or functions. -If you want to reuse non-UI functionality between components, we suggest extracting it into a separate JavaScript module. The components may import it and use that function, object, or a class, without extending it. +If you want to reuse non-UI functionality between components, we suggest extracting it into a separate JavaScript module. The components may import it and use that function, object, or class, without extending it.