import { Tabs } from "antd" import { SettingsOllama } from "./Settings/ollama" import { SettingPrompt } from "./Settings/prompt" import { SettingOther } from "./Settings/other" type Props = { setClose: (close: boolean) => void } export const Settings = ({ setClose }: Props) => { return (
}, { id: "2", key: "2", label: "Web UI Settings", children: }, { id: "3", key: "3", label: "Ollama Settings", children: } ]} />
) }