You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/frontend/src/Store/createAppStore.js

16 lines
369 B

import { createStore } from 'redux';
import createReducers, { defaultState } from 'Store/Actions/createReducers';
import middlewares from 'Store/Middleware/middlewares';
function createAppStore(history) {
const appStore = createStore(
createReducers(history),
defaultState,
middlewares(history)
);
return appStore;
}
export default createAppStore;