Passing Redux store in props
I'm doing an University practice building an app using React and Redux. When I start the server using Yarn, I get this error: Passing redux store in props has been removed and does not do anything. To use a custom Redux store for specific components, create a custom React context with React.createContext(), and pass the context object to React-Redux's Provider and specific components like: <Provider context={MyContext}><ConnectedComponent context={MyContext} /></Provider>. You may also pass a {context : MyContext} option to connect My files are these: index.js import React from 'react'; import