import { IChatItem } from '../ChatLogsType'; export const ChatWeapp: React.FC = (props) => { function content() { try { const msg = JSON.parse(props.chat?.content as string); // console.log(msg); return (
{msg.title}
{msg.description}
); } catch (_e) { return (
{props.chat?.content}
); } } return <>{content()}; };