14 lines
370 B
TypeScript
14 lines
370 B
TypeScript
|
|
import { SettingsLayout } from "~components/Layouts/SettingsOptionLayout"
|
||
|
|
import OptionLayout from "~components/Option/Layout"
|
||
|
|
import { SettingsOllama } from "~components/Option/Settings/ollama"
|
||
|
|
|
||
|
|
export const OptionOllamaSettings = () => {
|
||
|
|
return (
|
||
|
|
<OptionLayout>
|
||
|
|
<SettingsLayout>
|
||
|
|
<SettingsOllama />
|
||
|
|
</SettingsLayout>
|
||
|
|
</OptionLayout>
|
||
|
|
)
|
||
|
|
}
|