import { useTranslate } from '@/hooks/common-hooks'; import { IModalProps } from '@/interfaces/common'; import { Modal, Typography } from 'antd'; import styles from './index.less'; const { Paragraph } = Typography; const ChatIdModal = ({ visible, hideModal, id, }: IModalProps & { id: string; name?: string; idKey: string }) => { const { t } = useTranslate('chat'); return ( <> {id} ); }; export default ChatIdModal;