Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

index.js 329B

123456789
  1. import { createStore, applyMiddleware } from "redux";
  2. import { enableBatching } from 'redux-batched-actions';
  3. import thunk from "redux-thunk";
  4. import reducers from "./reducers";
  5. import { init } from './authPersistor'
  6. const store = createStore(enableBatching(reducers), applyMiddleware(thunk));
  7. init(store)
  8. export default store;