import { EnvironmentFilled } from '@ant-design/icons'; import { IChatItem } from '../ChatLogsType'; export const ChatLocation: React.FC = (props) => { function content() { try { const msg = JSON.parse(props.chat?.content as string); return (
{msg.title}
{msg.address}
); } catch (_e) { return (
{props.chat?.content}
); } } return <>{content()}; };