UNPKG

@cometchat/chat-uikit-react

Version:

Ready-to-use Chat UI Components for React

14 lines (11 loc) 321 B
import './index.css'; // src/utils/getBubbleAlignment.ts function getBubbleAlignment(message, loggedInUser) { try { const senderUid = message.getSender().getUid(); return senderUid && loggedInUser?.getUid() === senderUid ? "right" : "left"; } catch { return "left"; } } export { getBubbleAlignment };