import React from "react"; import { GeminiEnvSection, GeminiConfigSection } from "./GeminiConfigSections"; interface GeminiConfigEditorProps { envValue: string; configValue: string; onEnvChange: (value: string) => void; onConfigChange: (value: string) => void; onEnvBlur?: () => void; envError: string; configError: string; } const GeminiConfigEditor: React.FC = ({ envValue, configValue, onEnvChange, onConfigChange, onEnvBlur, envError, configError, }) => { return (
{/* Env Section */} {/* Config JSON Section */}
); }; export default GeminiConfigEditor;