import React from "react"; import { useTranslation } from "react-i18next"; interface CodexAuthSectionProps { value: string; onChange: (value: string) => void; onBlur?: () => void; error?: string; } /** * CodexAuthSection - Auth JSON editor section */ export const CodexAuthSection: React.FC = ({ value, onChange, onBlur, error, }) => { const { t } = useTranslation(); return (