@connectycube/chat-widget
Version:
A React component that seamlessly integrates ConnectyCube's real-time chat capabilities into your web applications. This widget offers an out-of-the-box solution for embedding chat features—such as instant messaging, user presence, and file sharing—withou
12 lines (11 loc) • 333 B
TypeScript
import { default as React } from 'react';
import { Messages } from 'connectycube/types';
export interface MessageProps {
message: Messages.Message;
isGroupChat: boolean;
dialogName: string;
senderName: string;
senderAvatar?: string | null;
}
declare const Message: React.FC<MessageProps>;
export default Message;