import type { FC } from 'react' import { useTranslation } from 'react-i18next' import { useStore } from '../../store' import ChatWrapper from './chat-wrapper' const DebugAndPreview: FC = () => { const { t } = useTranslation() const showRunHistory = useStore(s => s.showRunHistory) return (
{t('workflow.common.debugAndPreview').toLocaleUpperCase()}
) } export default DebugAndPreview