refactor model menu items into component

This commit is contained in:
Daniel Avila 2023-03-03 21:33:09 -05:00
parent 0bec306e59
commit 62bb6ea8f8
6 changed files with 123 additions and 20 deletions

View file

@ -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,
},