Created
May 17, 2020 19:35
-
-
Save clintonyeb/e06cf643037b461464cd1cb9622d689d to your computer and use it in GitHub Desktop.
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 { createStore, applyMiddleware } from 'redux'; | |
//createStore creates a Redux store that holds the complete state tree of your app | |
// applyMiddleware is a store enhancer that ships with redux | |
import thunk from 'redux-thunk'; | |
//Redux Thunk is for communicating asynchronously with an external API to retrieve or save data. | |
//Redux Thunk makes it easy to dispatch actions that follow the lifecycle of a request to an external API. | |
//reducers are statemachines that take a state and action as input and return an output | |
import rootReducer from './Reducers/rootReducer'; | |
//Here we are exporting a method to configure store. This method will be referred to in index.js where we will be | |
//initializing a store | |
export default function configureStore() { | |
return createStore( | |
rootReducer, | |
applyMiddleware(thunk) | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment