{m.text ? highlightMentions(m.text, memberNames) : null}
{m.attachment ?
: null}
{canReact ? (
{pickerOpen ? (
setPickerOpen(false)}>
{REACTION_EMOJIS.map((e) => (
))}
) : null}
) : null}
{onOpenThread ? (
) : null}
{m.reactions && m.reactions.length > 0 ? (
{m.reactions.map((r) => (
))}
) : null}
{replyCount !== undefined && replyCount > 0 && onOpenThread ? (
) : null}
{message.mine && seen ?
Seen : null}
);
}