import { memo, useState, } from 'react' import { useTranslation } from 'react-i18next' import { ChevronDown } from '@/app/components/base/icons/src/vender/line/arrows' const UserInput = () => { const { t } = useTranslation() const [expanded, setExpanded] = useState(true) return (
setExpanded(!expanded)} > {t('workflow.panel.userInputField').toLocaleUpperCase()}
{ expanded && (
Service Name
) }
) } export default memo(UserInput)