From bc952a8f85a0b828f7a864cf2a9f3d37240b297a Mon Sep 17 00:00:00 2001 From: mubarakn <45306327+mubarakn@users.noreply.github.com> Date: Mon, 8 Jan 2024 16:52:23 +0530 Subject: [PATCH] Update README.md remove extra 'your' --- api-documentation/context-provider/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-documentation/context-provider/README.md b/api-documentation/context-provider/README.md index ad5d94c..cfae3f9 100644 --- a/api-documentation/context-provider/README.md +++ b/api-documentation/context-provider/README.md @@ -4,7 +4,7 @@ ### Context provider -In order for your your [Droppable](../droppable/) and [Draggable](../draggable/) components to interact with each other, you'll need to make sure that the part of your React tree that uses them is nested within a parent `` component. The `` provider makes use of the [React Context API](https://reactjs.org/docs/context.html) to share data between draggable and droppable components and hooks. +In order for your [Droppable](../droppable/) and [Draggable](../draggable/) components to interact with each other, you'll need to make sure that the part of your React tree that uses them is nested within a parent `` component. The `` provider makes use of the [React Context API](https://reactjs.org/docs/context.html) to share data between draggable and droppable components and hooks. > React context provides a way to pass data through the component tree without having to pass props down manually at every level.