import React from 'react'; import { Key, Globe } from 'lucide-react'; import { AppConfig } from '../../types'; interface ApiSectionProps { config: AppConfig; setConfig: (c: AppConfig) => void; } const ApiSection = ({ config, setConfig }: ApiSectionProps) => { return (