'use client' import React, { type FC } from 'react' import { useTranslation } from 'react-i18next' import Panel from '@/app/components/app/configuration/base/feature-panel' import { Citations } from '@/app/components/base/icons/src/vender/solid/editor' const Citation: FC = () => { const { t } = useTranslation() return (
{t('appDebug.feature.citation.title')}
} headerIcon={} headerRight={
{t('appDebug.feature.citation.resDes')}
} noBodySpacing /> ) } export default React.memo(Citation)