import type { FC } from 'react' import { memo } from 'react' import { useTranslation } from 'react-i18next' import BlockIcon from '../block-icon' import { BlockEnum } from '../types' import { AlertTriangle } from '@/app/components/base/icons/src/vender/line/alertsAndFeedback' import { FileCheck02 } from '@/app/components/base/icons/src/vender/line/files' import { useStore as useAppStore } from '@/app/components/app/store' import AppIcon from '@/app/components/base/app-icon' const WorkflowInfo: FC = () => { const { t } = useTranslation() const appDetail = useAppStore(state => state.appDetail) if (!appDetail) return null return (
{appDetail.name}
{appDetail.description}
{t('workflow.panel.checklist')}(2)
{t('workflow.panel.checklistTip')}
Start
This step is not connected to anything
) } export default memo(WorkflowInfo)