index.ts 233 B

123456789
  1. import { createStore } from 'redux'
  2. import rootReducer from './reducers'
  3. const store = createStore(
  4. rootReducer,
  5. (<any>window).__REDUX_DEVTOOLS_EXTENSION__ && (<any>window).__REDUX_DEVTOOLS_EXTENSION__()
  6. )
  7. export default store