import { IChatItem } from '../ChatLogsType'; export const ChatVote: React.FC = (props) => { const votetype: any = { 101: '发起投票', 102: '参与投票' }; function content() { return (
{props.chat?.votetitle}
{props.chat?.voteitem}
投票 [{votetype[props.chat?.votetype as string]}]
); } return <>{content()}; };