Grégoire Delattre bcadc48d5a Launch prettier with the --fix option
They've changed their default settings, this changes a lot of stuff in
our code base.
2020-04-01 17:55:34 +02:00

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