mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-18 08:25:30 +01:00
11 lines
261 B
JavaScript
11 lines
261 B
JavaScript
import { configureStore } from '@reduxjs/toolkit';
|
|
|
|
import convoReducer from './convoSlice.js';
|
|
// import uploadReducer from './uploadSlice.js';
|
|
|
|
export const store = configureStore({
|
|
reducer: {
|
|
convo: convoReducer,
|
|
// upload: uploadReducer,
|
|
},
|
|
});
|