2023-07-26 19:47:44 +08:00

20 lines
736 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { MessageSignalContent } from "wukongimjssdk"
import React from "react"
import MessageBase from "../Base"
import { MessageCell } from "../MessageCell"
export class SignalMessageContent extends MessageSignalContent {
public get conversationDigest(): string {
return "此消息已采用端对端加密web端无法解密请在手机端查看"
}
}
export class SignalMessageCell extends MessageCell {
render() {
const { message, context } = this.props
return <MessageBase context={context} message={message} onBubble={() => {
}}><div className="wk-message-text"><pre>web端无法解密</pre></div></MessageBase>
}
}