| 1234567891011121314 |
- import basePathReducer from '../features/BasePath/basePathSlice';
- import pluginPathReducer from '../features/PluginPath/pluginPathSlice';
- import ConfigOverrideReducer from '../features/ConfigOverride/configOverrideSlice';
- import { combineReducers } from '@reduxjs/toolkit';
- const rootReducer = combineReducers({
- basePath: basePathReducer,
- pluginPath: pluginPathReducer,
- configOverride: ConfigOverrideReducer
- });
- export type RootState = ReturnType<typeof rootReducer>;
- export default rootReducer;
|