import type { FC } from 'react' import { useTranslation } from 'react-i18next' import { Variable02 } from '@/app/components/base/icons/src/vender/solid/development' const Empty: FC = () => { const { t } = useTranslation() return (
{t('workflow.debug.variableInspect.title')}
{t('workflow.debug.variableInspect.emptyTip')}
{t('workflow.debug.variableInspect.emptyLink')}
) } export default Empty