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.
bazarr/frontend/src/@redux/reducers/index.ts

13 lines
234 B

import { combineReducers } from "redux";
import movie from "./movie";
import series from "./series";
import site from "./site";
import system from "./system";
export default combineReducers({
system,
series,
movie,
site,
});