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