Wrapping the Products Provider around the Application
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import { render } from 'react-dom' | |
import { createStore, applyMiddleware } from 'redux' | |
import { Provider } from 'react-redux' | |
import { createLogger } from 'redux-logger' | |
import thunk from 'redux-thunk' | |
import reducer from './reducers' | |
import { getAllProducts } from './actions' | |
import App from './containers/App' | |
import ProductsProvider from './provider/products.provider' | |
const middleware = [thunk]; | |
if (process.env.NODE_ENV !== 'production') { | |
middleware.push(createLogger()); | |
} | |
const store = createStore( | |
reducer, | |
applyMiddleware(...middleware) | |
) | |
store.dispatch(getAllProducts()) | |
render( | |
<ProductsProvider> | |
<Provider store={store}> | |
<App /> | |
</Provider> | |
</ProductsProvider>, | |
document.getElementById('root') | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment