Personal Dashboard

index.js 301B

12345678910
  1. import { createStore } from 'redux'
  2. import * as actions from './Actions'
  3. import reducers from './Reducers'
  4. const devToolsEnabled = window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__()
  5. let Store = createStore(reducers, devToolsEnabled)
  6. export { actions }
  7. export default Store