'use client' import React, { type FC } from 'react' import { useTranslation } from 'react-i18next' import { Microphone01 } from '@/app/components/base/icons/src/vender/solid/mediaAndDevices' const SpeechToTextConfig: FC = () => { const { t } = useTranslation() return (
{t('appDebug.feature.speechToText.title')}
{t('appDebug.feature.speechToText.resDes')}
) } export default React.memo(SpeechToTextConfig)