Connecting Components to the Store

Learn to connect components to the store.

In this section, we are going to connect the existing components in our app to our store. We will start by adding what is called a store provider to the root of our component tree, which allows components lower in the tree to consume the store. We will then connect the home, question, and search pages to the Redux store using hooks from React Redux.

Adding a store provider

Let’s provide the store to the root of our component tree. To do that, perform the following steps:

  1. In App.tsx, import the Provider component from React Redux and the configureStore function we created in the previous section. Add these import statements just after the React import statement:

Get hands-on with 1200+ tech skills courses.