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; export default rootReducer;