From 0e95fcee35c07a4982087b417c09ee1a7e63131f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Deimantas=20But=C4=97nas?= <40717783+itsmedmd@users.noreply.github.com> Date: Wed, 18 Aug 2021 18:24:29 +0300 Subject: [PATCH] [Tutorial Docs] Fixing a grammar mistake Missing 'it' pronoun. --- docs/tutorials/fundamentals/part-5-ui-and-react.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/fundamentals/part-5-ui-and-react.md b/docs/tutorials/fundamentals/part-5-ui-and-react.md index 77c8bda30e..f5fdaed888 100644 --- a/docs/tutorials/fundamentals/part-5-ui-and-react.md +++ b/docs/tutorials/fundamentals/part-5-ui-and-react.md @@ -274,7 +274,7 @@ export default Header Our components can now read state from the store, and dispatch actions to the store. However, we're still missing something. Where and how are the React-Redux hooks finding the right Redux store? A hook is a JS function, so it can't automatically import a store from `store.js` by itself. -Instead, we have to specifically tell React-Redux what store we want to use in our components. We do this by **rendering a `` component around our entire ``, and passing the Redux store as a prop to ``**. After we do this once, every component in the application will be able to access the Redux store if needs to. +Instead, we have to specifically tell React-Redux what store we want to use in our components. We do this by **rendering a `` component around our entire ``, and passing the Redux store as a prop to ``**. After we do this once, every component in the application will be able to access the Redux store if it needs to. Let's add that to our main `index.js` file: