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

14 lines
212 B

import movies from "./movie";
import series from "./series";
import site from "./site";
import system from "./system";
const AllReducers = {
movies,
series,
site,
system,
};
export default AllReducers;