complete customGpt

This commit is contained in:
Daniel Avila 2023-03-04 20:48:59 -05:00
parent b4b0c123ba
commit d64f914552
9 changed files with 49 additions and 43 deletions

View file

@ -1,20 +0,0 @@
import React from 'react';
// import { setModel, setDisabled } from '~/store/submitSlice';
// import { swr } from '~/utils/fetchers';
// import { setModels } from '~/store/modelSlice';
import ModelItem from './ModelItem';
export default function MenuItems({ models }) {
return (
<>
{models.map((modelItem, i) => (
<ModelItem
key={i}
// id={modelItem._id}
modelName={modelItem.name}
value={modelItem.value}
/>
))}
</>
);
}