import { useState } from 'react' import { useTranslation } from 'react-i18next' import { RiMoreFill, } from '@remixicon/react' import { PortalToFollowElem, PortalToFollowElemContent, PortalToFollowElemTrigger } from '@/app/components/base/portal-to-follow-elem' import ActionButton, { ActionButtonState } from '@/app/components/base/action-button' type Props = { handleResetChat: () => void handleViewChatSettings: () => void } const MobileOperationDropdown = ({ handleResetChat, handleViewChatSettings, }: Props) => { const { t } = useTranslation() const [open, setOpen] = useState(false) return ( setOpen(v => !v)} >
{t('share.chat.resetChat')}
{t('share.chat.viewChatSettings')}
) } export default MobileOperationDropdown