Add a new settings page for OpenAI configuration, including a dedicated tab in the settings layout, translations, and routing.
16 lines
378 B
TypeScript
16 lines
378 B
TypeScript
import { SettingsLayout } from "~/components/Layouts/SettingsOptionLayout"
|
|
import OptionLayout from "~/components/Layouts/Layout"
|
|
import { OpenAIApp } from "@/components/Option/Settings/openai"
|
|
|
|
const OptionOpenAI = () => {
|
|
return (
|
|
<OptionLayout>
|
|
<SettingsLayout>
|
|
<OpenAIApp />
|
|
</SettingsLayout>
|
|
</OptionLayout>
|
|
)
|
|
}
|
|
|
|
export default OptionOpenAI
|