Files
scrm.antd/src/pages/ChatLogs/components/ChatTodo.tsx

18 lines
555 B
TypeScript
Raw Normal View History

2023-04-13 17:36:49 +08:00
import { IChatItem } from '../ChatLogsType';
export const ChatTodo: React.FC<IChatItem> = (props) => {
function content() {
return (
<div style={{ display: 'flex', color: '#000', flexDirection: 'column' }}>
<div style={{ wordBreak: 'break-all' }}>{props.chat?.title}</div>
<div style={{ wordBreak: 'break-all' }}>{props.chat?.content}</div>
<div style={{ borderTop: '1px solid #ddd', color: '#999', marginTop: 8, paddingTop: 8 }}>
</div>
</div>
);
}
return <>{content()}</>;
};