mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-15 15:08:52 +01:00
11 lines
259 B
JavaScript
11 lines
259 B
JavaScript
import { configureStore } from '@reduxjs/toolkit';
|
|
|
|
import convoReducer from './convoSlice.js';
|
|
import messageReducer from './messageSlice.js'
|
|
|
|
export const store = configureStore({
|
|
reducer: {
|
|
convo: convoReducer,
|
|
messages: messageReducer,
|
|
},
|
|
});
|