Files
super-app/App/common/redux/rootReducer.js

9 lines
198 B
JavaScript
Raw Permalink Normal View History

import { combineReducers } from "redux";
import screenReducer from "./screens/screenReducer";
const rootReducer = combineReducers({
screenReducer: screenReducer,
});
export default rootReducer;