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"; import polochon from "./polochon"; import notifications from "./notifications"; export default combineReducers({ movieStore, showsStore, showStore, userStore, alerts, torrentStore, adminStore, polochon, notifications });