import { memo, } from 'react' import { RiCloseLine } from '@remixicon/react' import type { GlobalVariable } from '../../types' import Item from './item' import { useStore } from '@/app/components/workflow/store' import cn from '@/utils/classnames' const Panel = () => { const setShowPanel = useStore(s => s.setShowGlobalVariablePanel) const globalVariableList: GlobalVariable[] = [ { name: 'conversation_id', value_type: 'string', description: 'conversation id', }, ] return (