'use client' import type { FC } from 'react' import React from 'react' import { useTranslation } from 'react-i18next' import { RiQuestionLine, } from '@remixicon/react' import Panel from '@/app/components/app/configuration/base/feature-panel' import SuggestedQuestionsAfterAnswerIcon from '@/app/components/app/configuration/base/icons/suggested-questions-after-answer-icon' import Tooltip from '@/app/components/base/tooltip' const SuggestedQuestionsAfterAnswer: FC = () => { const { t } = useTranslation() return (
{t('appDebug.feature.suggestedQuestionsAfterAnswer.title')}
{t('appDebug.feature.suggestedQuestionsAfterAnswer.description')} } selector='suggestion-question-tooltip'> } headerIcon={} headerRight={
{t('appDebug.feature.suggestedQuestionsAfterAnswer.resDes')}
} noBodySpacing /> ) } export default React.memo(SuggestedQuestionsAfterAnswer)