import React from 'react'; import ReactDOM from 'react-dom'; import './index.css'; import App from './App'; import { Provider } from 'react-redux'; // Step 1: Import the Redux Provider import { store } from './store'; // Step 2: Import the store // Step 3: Wrap the App component with Provider to give access to the store ReactDOM.render( , document.getElementById('root') );