mirror of
https://gitlab.com/ceda_ei/sonzai.git
synced 2025-07-09 08:16:54 +02:00
12 lines
205 B
JavaScript
12 lines
205 B
JavaScript
import { combineReducers } from "redux";
|
|
|
|
import timetable from "./timetable";
|
|
import classes from "./classes";
|
|
|
|
const rootReducer = combineReducers({
|
|
timetable,
|
|
classes
|
|
});
|
|
|
|
export default rootReducer;
|