import React from "react"; import { CodexAuthSection, CodexConfigSection } from "./CodexConfigSections"; interface CodexConfigEditorProps { authValue: string; configValue: string; onAuthChange: (value: string) => void; onConfigChange: (value: string) => void; onAuthBlur?: () => void; authError: string; configError: string; } const CodexConfigEditor: React.FC = ({ authValue, configValue, onAuthChange, onConfigChange, onAuthBlur, authError, configError, }) => { return (
{/* Auth JSON Section */} {/* Config TOML Section */}
); }; export default CodexConfigEditor;