mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-27 12:46:13 +01:00
refactor model menu items into component
This commit is contained in:
parent
0bec306e59
commit
62bb6ea8f8
6 changed files with 123 additions and 20 deletions
|
|
@ -2,6 +2,7 @@ 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'
|
||||
|
||||
|
|
@ -9,6 +10,7 @@ export const store = configureStore({
|
|||
reducer: {
|
||||
convo: convoReducer,
|
||||
messages: messageReducer,
|
||||
models: modelReducer,
|
||||
text: textReducer,
|
||||
submit: submitReducer,
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue