rootReducer.ts 505 B

1234567891011121314
  1. import basePathReducer from '../features/BasePath/basePathSlice';
  2. import pluginPathReducer from '../features/PluginPath/pluginPathSlice';
  3. import ConfigOverrideReducer from '../features/ConfigOverride/configOverrideSlice';
  4. import { combineReducers } from '@reduxjs/toolkit';
  5. const rootReducer = combineReducers({
  6. basePath: basePathReducer,
  7. pluginPath: pluginPathReducer,
  8. configOverride: ConfigOverrideReducer
  9. });
  10. export type RootState = ReturnType<typeof rootReducer>;
  11. export default rootReducer;