BOD-14 Fixed some broken UI with temporary hard coded valeus. Added basic Chat tagging features
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import React from "react";
|
||||
import ChatTagRoContainer from "../chat-tag-ro/chat-tag-ro.container";
|
||||
import ChatConversationTitleTags from "../chat-conversation-title-tags/chat-conversation-title-tags.component";
|
||||
|
||||
export default function ChatConversationTitle({ conversation }) {
|
||||
return (
|
||||
<div>
|
||||
{conversation.phone_num}
|
||||
<ChatConversationTitleTags
|
||||
jobConversations={conversation.job_conversations || []}
|
||||
/>
|
||||
<ChatTagRoContainer conversation={conversation} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user