You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// App.jsimportReactfrom'react';import{Provider}from'react-redux';importYourComponentfrom'./YourComponent.js'exportdefaultfunctionApp({ store }){return(<Providerstore={store}>
<!-- this is important as the HOC will get the store
from the context provided by the store provider --><YourComponent/></Provider>)}