Skip to content

Instantly share code, notes, and snippets.

@syamjayaraj
Created December 7, 2018 11:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save syamjayaraj/118db906acae240c38d89170c643a889 to your computer and use it in GitHub Desktop.
Save syamjayaraj/118db906acae240c38d89170c643a889 to your computer and use it in GitHub Desktop.
import {applyMiddleware, createStore} from 'redux'
import logger from 'redux-logger'
import rootReducer from '../reducers'
const store = createStore(rootReducer, applyMiddleware(
logger
))
export default store
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment