Grégoire Delattre c5cafacbf1 Update everything to work with the new router
By the way, remove the router state from redux.
2019-05-19 02:31:25 +02:00

20 lines
406 B
JavaScript

import { combineReducers } from "redux";
import movieStore from "./movies"
import showsStore from "./shows"
import showStore from "./show"
import userStore from "./users"
import alerts from "./alerts"
import torrentStore from "./torrents"
import adminStore from "./admins"
export default combineReducers({
movieStore,
showsStore,
showStore,
userStore,
alerts,
torrentStore,
adminStore,
});