mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-31 15:48:51 +01:00
18 lines
No EOL
481 B
JavaScript
18 lines
No EOL
481 B
JavaScript
import { configureStore } from '@reduxjs/toolkit';
|
|
|
|
import convoReducer from './convoSlice.js';
|
|
import messageReducer from './messageSlice.js'
|
|
import modelReducer from './modelSlice.js'
|
|
import submitReducer from './submitSlice.js'
|
|
import textReducer from './textSlice.js'
|
|
|
|
export const store = configureStore({
|
|
reducer: {
|
|
convo: convoReducer,
|
|
messages: messageReducer,
|
|
models: modelReducer,
|
|
text: textReducer,
|
|
submit: submitReducer,
|
|
},
|
|
devTools: true,
|
|
}); |