Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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;